Fix broken links

Summary: Noticed some broken links while converting plugins

Reviewed By: priteshrnandgaonkar

Differential Revision: D27997670

fbshipit-source-id: fd2715db010a042f749e0908b44a3fb3c6aa6f18
This commit is contained in:
John Knox
2021-04-26 08:25:44 -07:00
committed by Facebook GitHub Bot
parent ae752f785e
commit 13ce7741a6

View File

@@ -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