From 13ce7741a64280c1933e7c482e0551f09702794e Mon Sep 17 00:00:00 2001 From: John Knox Date: Mon, 26 Apr 2021 08:25:44 -0700 Subject: [PATCH] Fix broken links Summary: Noticed some broken links while converting plugins Reviewed By: priteshrnandgaonkar Differential Revision: D27997670 fbshipit-source-id: fd2715db010a042f749e0908b44a3fb3c6aa6f18 --- docs/extending/desktop-plugin-structure.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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