mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-01-12 22:51:09 +08:00
RNTester examples taken from React Native 0.55.4. Minor changes to disable / enable some examples for the web.
1.1 KiB
1.1 KiB
examples
These examples are a clone of React Native's RNTester. RNTester showcases React Native views and modules. It's used to manually verify the appearance and behavior of React Native for Web.
Try the examples app online.
To run the examples locally:
yarn examples
open ./packages/examples/dist/index.html
Develop against these examples:
yarn compile --watch
NODE_ENV=development yarn examples --watch
Notes
The RNTester examples rely on features specific to React Native's
packager such as loading resolution
variants of images, Babel transforms, compiling ES module dependencies, and
Haste – Facebook's module system. These features are emulated in this
package's webpack.config.js.
The commonjs export in react-native-web is also used to ensure that webpack
can load the aliased modules correctly (as compiled ES modules are only
available from the .default property of a module.)