From 0a09699e07bcc99329eb709cfa4ba62a2049e603 Mon Sep 17 00:00:00 2001 From: Michel Weststrate Date: Fri, 28 Aug 2020 05:05:12 -0700 Subject: [PATCH] Fix links in in react-native-flipper readme (#1505) Summary: Fixes https://github.com/facebook/flipper/issues/1504. Used fully qualified urls to make sure that they resolve when viewed both on NPM and Github Pull Request resolved: https://github.com/facebook/flipper/pull/1505 Reviewed By: jknoxville Differential Revision: D23395491 Pulled By: mweststrate fbshipit-source-id: 31064c20a6b1621ca020ec95801a51d5731afa62 --- react-native/react-native-flipper/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react-native/react-native-flipper/README.md b/react-native/react-native-flipper/README.md index ba47ecf6b..20bf26861 100644 --- a/react-native/react-native-flipper/README.md +++ b/react-native/react-native-flipper/README.md @@ -23,8 +23,8 @@ The `addPlugin` accepts a `plugin` parameter, that registers a client plugin and ## Example -An example plugin can be found in [examples/FlipperTicTacToe.js](../sample/FlipperTicTacToe.js). +An example plugin can be found in [FlipperTicTacToe.js](https://github.com/facebook/flipper/blob/master/react-native/ReactNativeFlipperExample/FlipperTicTacToe.js). The corresponding Desktop plugin ships by default in Flipper, so importing the above file and dropping the `` component somewhere in your application should work out of the box. -The sources of the corresponding Desktop plugin can be found [here](../../desktop/plugins/rn-tic-tac-toe). +The sources of the corresponding Desktop plugin can be found [here](https://github.com/facebook/flipper/tree/master/desktop/plugins/rn-tic-tac-toe).