Skip to content

Commit

Permalink
[docs] fix broken link for create-devtools-plugins (expo#26409)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArianHamdi authored Jan 14, 2024
1 parent f8d94a3 commit 03aa6e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/pages/debugging/devtools-plugins.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Dev tools plugins are available in your local development environment to help yo

To add a dev tool plugin to your app, install it as a package and add a small snippet to connect the code to your app. This code is invoked from the app's root component to establish a two-way communication between your app and the plugin. Then, the plugin can inspect aspects of your app for the entire time your app runs in development mode.

All [Expo dev tools plugins](#expo-dev-tools-plugins) and plugins created with [our creation tool](/create-devtools-plugins) export a hook that you can use to connect the plugin to your app. The hook and any functions returned from it will no-op when the app is not running in development mode.
All [Expo dev tools plugins](#expo-dev-tools-plugins) and plugins created with [our creation tool](/debugging/create-devtools-plugins) export a hook that you can use to connect the plugin to your app. The hook and any functions returned from it will no-op when the app is not running in development mode.

Some plugin hooks require parameters that relate to how the plugin inspects your app. For instance, a plugin for inspecting React Navigation state might require a reference to the navigation root.

Expand Down Expand Up @@ -205,4 +205,4 @@ export default function App() {
}
```
In the terminal, run `npx expo start`, press <kbd>shift</kbd> + <kbd>m</kbd> to open the list of dev tools, and then select the Tinybase plugin. This will open the plugin's web interface, displaying the contents of your store as it is modified.
In the terminal, run `npx expo start`, press <kbd>shift</kbd> + <kbd>m</kbd> to open the list of dev tools, and then select the Tinybase plugin. This will open the plugin's web interface, displaying the contents of your store as it is modified.

0 comments on commit 03aa6e1

Please sign in to comment.