diff --git a/docs/extending/desktop-plugin-structure.mdx b/docs/extending/desktop-plugin-structure.mdx index a4524f61b..bb98eb929 100644 --- a/docs/extending/desktop-plugin-structure.mdx +++ b/docs/extending/desktop-plugin-structure.mdx @@ -136,7 +136,7 @@ export function Component() { } ``` -A further guide on how to write custom Flipper plugins can be found here: [tutorial](../tutorial/js-custom). +A further guide on how to write custom Flipper plugins can be found here: [tutorial](../tutorial/js-custom.mdx). ### Creating a Device Plugin @@ -177,11 +177,11 @@ To specify that plugin supports all types of Android devices, and physical iOS d ``` Device plugins work in general similar to normal client plugins, so aren't worked out in detail in this document. -The available APIs for device plugins are listed [here](./flipper-plugin#devicepluginclient). +The available APIs for device plugins are listed [here](./flipper-plugin.mdx#devicepluginclient). ### Creating a simple table plugin -Flipper provides a standard abstraction to render data received from a Client plugin in a table, see [creating a table plugin](./create-table-plugin). +Flipper provides a standard abstraction to render data received from a Client plugin in a table, see [creating a table plugin](./create-table-plugin.mdx). ## Validation