Files
react-native-web/packages/examples
Nicolas Gallagher 506dba933c [change] Support React DOM 16.5
React DOM 16.5 changed unstable APIs that this project depends upon.
This regression was fixed in React DOM 16.5.1 but requires React Native
for Web to migrate to a different unstable API exported by React DOM.

Fix #1096
Close #1106
2018-09-17 10:16:33 -07:00
..
2018-06-05 13:13:36 -07:00
2018-09-17 10:16:33 -07:00
2018-06-04 10:24:31 -07:00
2018-06-04 10:24:31 -07:00

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.)