diff --git a/.flowconfig b/.flowconfig index a5a417012..a135f243d 100644 --- a/.flowconfig +++ b/.flowconfig @@ -4,7 +4,7 @@ [ignore] /.*/__tests__/.* /packages/.*/dist/.* -/website/.* +/packages/website/.* .*/node_modules/babel-plugin-transform-react-remove-prop-types/* [include] diff --git a/README.md b/README.md index 318121091..b7b5f6e00 100644 --- a/README.md +++ b/README.md @@ -45,17 +45,17 @@ and [animations](https://facebook.github.io/react-native/docs/animations.html). ### Guides -* [Getting started](https://github.com/necolas/react-native-web/blob/master/website/guides/getting-started.md) -* [Style](https://github.com/necolas/react-native-web/blob/master/website/guides/style.md) -* [Accessibility](https://github.com/necolas/react-native-web/blob/master/website/guides/accessibility.md) -* [Internationalization](https://github.com/necolas/react-native-web/blob/master/website/guides/internationalization.md) -* [Direct manipulation](https://github.com/necolas/react-native-web/blob/master/website/guides/direct-manipulation.md) -* [Advanced use](https://github.com/necolas/react-native-web/blob/master/website/guides/advanced.md) +* [Getting started](https://github.com/necolas/react-native-web/blob/master/packages/website/guides/getting-started.md) +* [Style](https://github.com/necolas/react-native-web/blob/master/packages/website/guides/style.md) +* [Accessibility](https://github.com/necolas/react-native-web/blob/master/packages/website/guides/accessibility.md) +* [Internationalization](https://github.com/necolas/react-native-web/blob/master/packages/website/guides/internationalization.md) +* [Direct manipulation](https://github.com/necolas/react-native-web/blob/master/packages/website/guides/direct-manipulation.md) +* [Advanced use](https://github.com/necolas/react-native-web/blob/master/packages/website/guides/advanced.md) ## Examples There are several examples [on the website][website-url] and in the [website's -source code](https://github.com/necolas/react-native-web/blob/master/website). +source code](https://github.com/necolas/react-native-web/blob/master/packages/website). Here is an example to get you started: ```js @@ -95,7 +95,7 @@ Examples of using React Native for Web with other web tools: * [Next.js](https://github.com/zeit/next.js/tree/master/examples/with-react-native-web) * [Phenomic](https://github.com/phenomic/phenomic/tree/master/examples/react-native-web-app) * [Razzle](https://github.com/jaredpalmer/razzle/tree/master/examples/with-react-native-web) -* [Storybook](https://github.com/necolas/react-native-web/tree/master/website/storybook/.storybook) +* [Storybook](https://github.com/necolas/react-native-web/tree/master/packages/website/storybook/.storybook) * [Styleguidist](https://github.com/styleguidist/react-styleguidist/tree/master/examples/react-native) ## Contributing diff --git a/package.json b/package.json index 4a1400665..6ddd7c178 100644 --- a/package.json +++ b/package.json @@ -9,13 +9,13 @@ "compile:es": "cd packages/react-native-web && babel src --out-dir dist --ignore \"**/__tests__\"", "benchmarks": "cd packages/benchmarks && yarn build", "benchmarks:release": "cd packages/benchmarks && yarn release", - "website": "cd website && yarn start", - "website:release": "cd website && yarn release", + "website": "cd packages/website && yarn start", + "website:release": "cd packages/website && yarn release", "flow": "flow", "fmt": "prettier --write \"**/*.js\"", "jest": "BABEL_ENV=commonjs jest --config ./scripts/jest/config.js", "lint": "yarn lint:check --fix", - "lint:check": "eslint packages scripts website", + "lint:check": "eslint packages scripts", "precommit": "lint-staged", "prerelease": "yarn test && yarn compile && yarn compile:commonjs", "release": "node ./scripts/release/publish.js", @@ -58,8 +58,7 @@ "react-test-renderer": "^16.3.2" }, "workspaces": [ - "packages/*", - "website" + "packages/*" ], "lint-staged": { "packages/react-native-web/src/index.js": [ diff --git a/website/guides/accessibility.md b/packages/website/guides/accessibility.md similarity index 100% rename from website/guides/accessibility.md rename to packages/website/guides/accessibility.md diff --git a/website/guides/advanced.md b/packages/website/guides/advanced.md similarity index 100% rename from website/guides/advanced.md rename to packages/website/guides/advanced.md diff --git a/website/guides/direct-manipulation.md b/packages/website/guides/direct-manipulation.md similarity index 100% rename from website/guides/direct-manipulation.md rename to packages/website/guides/direct-manipulation.md diff --git a/website/guides/getting-started.md b/packages/website/guides/getting-started.md similarity index 100% rename from website/guides/getting-started.md rename to packages/website/guides/getting-started.md diff --git a/website/guides/internationalization.md b/packages/website/guides/internationalization.md similarity index 100% rename from website/guides/internationalization.md rename to packages/website/guides/internationalization.md diff --git a/website/guides/style.md b/packages/website/guides/style.md similarity index 100% rename from website/guides/style.md rename to packages/website/guides/style.md diff --git a/website/package.json b/packages/website/package.json similarity index 81% rename from website/package.json rename to packages/website/package.json index c7ee5ac9b..b5b992fd8 100644 --- a/website/package.json +++ b/packages/website/package.json @@ -5,7 +5,7 @@ "scripts": { "build": "build-storybook -o ./dist -c ./storybook/.storybook", "start": "start-storybook -p 9001 -c ./storybook/.storybook", - "release": "yarn build && git checkout gh-pages && rm -rf ../storybook && mv dist ../storybook && git add -A && git commit -m \"Storybook deploy\" && git push origin gh-pages && git checkout -" + "release": "yarn build && git checkout gh-pages && rm -rf ../../storybook && mv dist ../../storybook && git add -A && git commit -m \"Website deploy\" && git push origin gh-pages && git checkout -" }, "dependencies": { "@storybook/addon-options": "^3.4.3", diff --git a/website/storybook/.storybook/.babelrc b/packages/website/storybook/.storybook/.babelrc similarity index 100% rename from website/storybook/.storybook/.babelrc rename to packages/website/storybook/.storybook/.babelrc diff --git a/website/storybook/.storybook/addons.js b/packages/website/storybook/.storybook/addons.js similarity index 100% rename from website/storybook/.storybook/addons.js rename to packages/website/storybook/.storybook/addons.js diff --git a/website/storybook/.storybook/config.js b/packages/website/storybook/.storybook/config.js similarity index 100% rename from website/storybook/.storybook/config.js rename to packages/website/storybook/.storybook/config.js diff --git a/website/storybook/.storybook/decorator-centered.js b/packages/website/storybook/.storybook/decorator-centered.js similarity index 100% rename from website/storybook/.storybook/decorator-centered.js rename to packages/website/storybook/.storybook/decorator-centered.js diff --git a/website/storybook/.storybook/webpack.config.js b/packages/website/storybook/.storybook/webpack.config.js similarity index 100% rename from website/storybook/.storybook/webpack.config.js rename to packages/website/storybook/.storybook/webpack.config.js diff --git a/website/storybook/1-components/ActivityIndicator/ActivityIndicatorScreen.js b/packages/website/storybook/1-components/ActivityIndicator/ActivityIndicatorScreen.js similarity index 100% rename from website/storybook/1-components/ActivityIndicator/ActivityIndicatorScreen.js rename to packages/website/storybook/1-components/ActivityIndicator/ActivityIndicatorScreen.js diff --git a/website/storybook/1-components/ActivityIndicator/examples/PropAnimating.js b/packages/website/storybook/1-components/ActivityIndicator/examples/PropAnimating.js similarity index 100% rename from website/storybook/1-components/ActivityIndicator/examples/PropAnimating.js rename to packages/website/storybook/1-components/ActivityIndicator/examples/PropAnimating.js diff --git a/website/storybook/1-components/ActivityIndicator/examples/PropColor.js b/packages/website/storybook/1-components/ActivityIndicator/examples/PropColor.js similarity index 100% rename from website/storybook/1-components/ActivityIndicator/examples/PropColor.js rename to packages/website/storybook/1-components/ActivityIndicator/examples/PropColor.js diff --git a/website/storybook/1-components/ActivityIndicator/examples/PropHidesWhenStopped.js b/packages/website/storybook/1-components/ActivityIndicator/examples/PropHidesWhenStopped.js similarity index 100% rename from website/storybook/1-components/ActivityIndicator/examples/PropHidesWhenStopped.js rename to packages/website/storybook/1-components/ActivityIndicator/examples/PropHidesWhenStopped.js diff --git a/website/storybook/1-components/ActivityIndicator/examples/PropSize.js b/packages/website/storybook/1-components/ActivityIndicator/examples/PropSize.js similarity index 100% rename from website/storybook/1-components/ActivityIndicator/examples/PropSize.js rename to packages/website/storybook/1-components/ActivityIndicator/examples/PropSize.js diff --git a/website/storybook/1-components/Button/ButtonScreen.js b/packages/website/storybook/1-components/Button/ButtonScreen.js similarity index 100% rename from website/storybook/1-components/Button/ButtonScreen.js rename to packages/website/storybook/1-components/Button/ButtonScreen.js diff --git a/website/storybook/1-components/Button/examples/PropColor.js b/packages/website/storybook/1-components/Button/examples/PropColor.js similarity index 100% rename from website/storybook/1-components/Button/examples/PropColor.js rename to packages/website/storybook/1-components/Button/examples/PropColor.js diff --git a/website/storybook/1-components/Button/examples/PropDisabled.js b/packages/website/storybook/1-components/Button/examples/PropDisabled.js similarity index 100% rename from website/storybook/1-components/Button/examples/PropDisabled.js rename to packages/website/storybook/1-components/Button/examples/PropDisabled.js diff --git a/website/storybook/1-components/Button/examples/PropOnPress.js b/packages/website/storybook/1-components/Button/examples/PropOnPress.js similarity index 100% rename from website/storybook/1-components/Button/examples/PropOnPress.js rename to packages/website/storybook/1-components/Button/examples/PropOnPress.js diff --git a/website/storybook/1-components/Button/helpers.js b/packages/website/storybook/1-components/Button/helpers.js similarity index 100% rename from website/storybook/1-components/Button/helpers.js rename to packages/website/storybook/1-components/Button/helpers.js diff --git a/website/storybook/1-components/CheckBox/CheckBoxScreen.js b/packages/website/storybook/1-components/CheckBox/CheckBoxScreen.js similarity index 100% rename from website/storybook/1-components/CheckBox/CheckBoxScreen.js rename to packages/website/storybook/1-components/CheckBox/CheckBoxScreen.js diff --git a/website/storybook/1-components/CheckBox/examples/CustomSize.js b/packages/website/storybook/1-components/CheckBox/examples/CustomSize.js similarity index 100% rename from website/storybook/1-components/CheckBox/examples/CustomSize.js rename to packages/website/storybook/1-components/CheckBox/examples/CustomSize.js diff --git a/website/storybook/1-components/CheckBox/examples/PropColor.js b/packages/website/storybook/1-components/CheckBox/examples/PropColor.js similarity index 100% rename from website/storybook/1-components/CheckBox/examples/PropColor.js rename to packages/website/storybook/1-components/CheckBox/examples/PropColor.js diff --git a/website/storybook/1-components/CheckBox/examples/PropDisabled.js b/packages/website/storybook/1-components/CheckBox/examples/PropDisabled.js similarity index 100% rename from website/storybook/1-components/CheckBox/examples/PropDisabled.js rename to packages/website/storybook/1-components/CheckBox/examples/PropDisabled.js diff --git a/website/storybook/1-components/CheckBox/examples/PropOnValueChange.js b/packages/website/storybook/1-components/CheckBox/examples/PropOnValueChange.js similarity index 100% rename from website/storybook/1-components/CheckBox/examples/PropOnValueChange.js rename to packages/website/storybook/1-components/CheckBox/examples/PropOnValueChange.js diff --git a/website/storybook/1-components/CheckBox/examples/PropValue.js b/packages/website/storybook/1-components/CheckBox/examples/PropValue.js similarity index 100% rename from website/storybook/1-components/CheckBox/examples/PropValue.js rename to packages/website/storybook/1-components/CheckBox/examples/PropValue.js diff --git a/website/storybook/1-components/CheckBox/examples/styles.js b/packages/website/storybook/1-components/CheckBox/examples/styles.js similarity index 100% rename from website/storybook/1-components/CheckBox/examples/styles.js rename to packages/website/storybook/1-components/CheckBox/examples/styles.js diff --git a/website/storybook/1-components/CheckBox/helpers.js b/packages/website/storybook/1-components/CheckBox/helpers.js similarity index 100% rename from website/storybook/1-components/CheckBox/helpers.js rename to packages/website/storybook/1-components/CheckBox/helpers.js diff --git a/website/storybook/1-components/Image/ImageScreen.js b/packages/website/storybook/1-components/Image/ImageScreen.js similarity index 100% rename from website/storybook/1-components/Image/ImageScreen.js rename to packages/website/storybook/1-components/Image/ImageScreen.js diff --git a/website/storybook/1-components/Image/examples/MultipleSources.js b/packages/website/storybook/1-components/Image/examples/MultipleSources.js similarity index 100% rename from website/storybook/1-components/Image/examples/MultipleSources.js rename to packages/website/storybook/1-components/Image/examples/MultipleSources.js diff --git a/website/storybook/1-components/Image/examples/NetworkImage.js b/packages/website/storybook/1-components/Image/examples/NetworkImage.js similarity index 100% rename from website/storybook/1-components/Image/examples/NetworkImage.js rename to packages/website/storybook/1-components/Image/examples/NetworkImage.js diff --git a/website/storybook/1-components/Image/examples/PropDefaultSource.js b/packages/website/storybook/1-components/Image/examples/PropDefaultSource.js similarity index 100% rename from website/storybook/1-components/Image/examples/PropDefaultSource.js rename to packages/website/storybook/1-components/Image/examples/PropDefaultSource.js diff --git a/website/storybook/1-components/Image/examples/PropDraggable.js b/packages/website/storybook/1-components/Image/examples/PropDraggable.js similarity index 100% rename from website/storybook/1-components/Image/examples/PropDraggable.js rename to packages/website/storybook/1-components/Image/examples/PropDraggable.js diff --git a/website/storybook/1-components/Image/examples/PropOnError.js b/packages/website/storybook/1-components/Image/examples/PropOnError.js similarity index 100% rename from website/storybook/1-components/Image/examples/PropOnError.js rename to packages/website/storybook/1-components/Image/examples/PropOnError.js diff --git a/website/storybook/1-components/Image/examples/PropOnLoad.js b/packages/website/storybook/1-components/Image/examples/PropOnLoad.js similarity index 100% rename from website/storybook/1-components/Image/examples/PropOnLoad.js rename to packages/website/storybook/1-components/Image/examples/PropOnLoad.js diff --git a/website/storybook/1-components/Image/examples/PropOnLoadEnd.js b/packages/website/storybook/1-components/Image/examples/PropOnLoadEnd.js similarity index 100% rename from website/storybook/1-components/Image/examples/PropOnLoadEnd.js rename to packages/website/storybook/1-components/Image/examples/PropOnLoadEnd.js diff --git a/website/storybook/1-components/Image/examples/PropOnLoadStart.js b/packages/website/storybook/1-components/Image/examples/PropOnLoadStart.js similarity index 100% rename from website/storybook/1-components/Image/examples/PropOnLoadStart.js rename to packages/website/storybook/1-components/Image/examples/PropOnLoadStart.js diff --git a/website/storybook/1-components/Image/examples/PropResizeMode.js b/packages/website/storybook/1-components/Image/examples/PropResizeMode.js similarity index 100% rename from website/storybook/1-components/Image/examples/PropResizeMode.js rename to packages/website/storybook/1-components/Image/examples/PropResizeMode.js diff --git a/website/storybook/1-components/Image/examples/PropSource.js b/packages/website/storybook/1-components/Image/examples/PropSource.js similarity index 100% rename from website/storybook/1-components/Image/examples/PropSource.js rename to packages/website/storybook/1-components/Image/examples/PropSource.js diff --git a/website/storybook/1-components/Image/examples/StaticGetSize.js b/packages/website/storybook/1-components/Image/examples/StaticGetSize.js similarity index 100% rename from website/storybook/1-components/Image/examples/StaticGetSize.js rename to packages/website/storybook/1-components/Image/examples/StaticGetSize.js diff --git a/website/storybook/1-components/Image/examples/StaticPrefetch.js b/packages/website/storybook/1-components/Image/examples/StaticPrefetch.js similarity index 100% rename from website/storybook/1-components/Image/examples/StaticPrefetch.js rename to packages/website/storybook/1-components/Image/examples/StaticPrefetch.js diff --git a/website/storybook/1-components/Image/helpers.js b/packages/website/storybook/1-components/Image/helpers.js similarity index 100% rename from website/storybook/1-components/Image/helpers.js rename to packages/website/storybook/1-components/Image/helpers.js diff --git a/website/storybook/1-components/Image/sources/index.js b/packages/website/storybook/1-components/Image/sources/index.js similarity index 100% rename from website/storybook/1-components/Image/sources/index.js rename to packages/website/storybook/1-components/Image/sources/index.js diff --git a/website/storybook/1-components/Image/sources/ladybug.jpg b/packages/website/storybook/1-components/Image/sources/ladybug.jpg similarity index 100% rename from website/storybook/1-components/Image/sources/ladybug.jpg rename to packages/website/storybook/1-components/Image/sources/ladybug.jpg diff --git a/website/storybook/1-components/Image/sources/placeholder.jpg b/packages/website/storybook/1-components/Image/sources/placeholder.jpg similarity index 100% rename from website/storybook/1-components/Image/sources/placeholder.jpg rename to packages/website/storybook/1-components/Image/sources/placeholder.jpg diff --git a/website/storybook/1-components/ImageBackground/ImageBackgroundScreen.js b/packages/website/storybook/1-components/ImageBackground/ImageBackgroundScreen.js similarity index 100% rename from website/storybook/1-components/ImageBackground/ImageBackgroundScreen.js rename to packages/website/storybook/1-components/ImageBackground/ImageBackgroundScreen.js diff --git a/website/storybook/1-components/ImageBackground/examples/PropChildren.js b/packages/website/storybook/1-components/ImageBackground/examples/PropChildren.js similarity index 100% rename from website/storybook/1-components/ImageBackground/examples/PropChildren.js rename to packages/website/storybook/1-components/ImageBackground/examples/PropChildren.js diff --git a/website/storybook/1-components/Picker/PickerScreen.js b/packages/website/storybook/1-components/Picker/PickerScreen.js similarity index 100% rename from website/storybook/1-components/Picker/PickerScreen.js rename to packages/website/storybook/1-components/Picker/PickerScreen.js diff --git a/website/storybook/1-components/Picker/examples/PickerExample.js b/packages/website/storybook/1-components/Picker/examples/PickerExample.js similarity index 100% rename from website/storybook/1-components/Picker/examples/PickerExample.js rename to packages/website/storybook/1-components/Picker/examples/PickerExample.js diff --git a/website/storybook/1-components/ProgressBar/ProgressScreen.js b/packages/website/storybook/1-components/ProgressBar/ProgressScreen.js similarity index 100% rename from website/storybook/1-components/ProgressBar/ProgressScreen.js rename to packages/website/storybook/1-components/ProgressBar/ProgressScreen.js diff --git a/website/storybook/1-components/ProgressBar/examples/CustomSize.js b/packages/website/storybook/1-components/ProgressBar/examples/CustomSize.js similarity index 100% rename from website/storybook/1-components/ProgressBar/examples/CustomSize.js rename to packages/website/storybook/1-components/ProgressBar/examples/CustomSize.js diff --git a/website/storybook/1-components/ProgressBar/examples/PropColor.js b/packages/website/storybook/1-components/ProgressBar/examples/PropColor.js similarity index 100% rename from website/storybook/1-components/ProgressBar/examples/PropColor.js rename to packages/website/storybook/1-components/ProgressBar/examples/PropColor.js diff --git a/website/storybook/1-components/ProgressBar/examples/PropIndeterminate.js b/packages/website/storybook/1-components/ProgressBar/examples/PropIndeterminate.js similarity index 100% rename from website/storybook/1-components/ProgressBar/examples/PropIndeterminate.js rename to packages/website/storybook/1-components/ProgressBar/examples/PropIndeterminate.js diff --git a/website/storybook/1-components/ProgressBar/examples/PropProgress.js b/packages/website/storybook/1-components/ProgressBar/examples/PropProgress.js similarity index 100% rename from website/storybook/1-components/ProgressBar/examples/PropProgress.js rename to packages/website/storybook/1-components/ProgressBar/examples/PropProgress.js diff --git a/website/storybook/1-components/ProgressBar/examples/PropTrackColor.js b/packages/website/storybook/1-components/ProgressBar/examples/PropTrackColor.js similarity index 100% rename from website/storybook/1-components/ProgressBar/examples/PropTrackColor.js rename to packages/website/storybook/1-components/ProgressBar/examples/PropTrackColor.js diff --git a/website/storybook/1-components/ProgressBar/helpers.js b/packages/website/storybook/1-components/ProgressBar/helpers.js similarity index 100% rename from website/storybook/1-components/ProgressBar/helpers.js rename to packages/website/storybook/1-components/ProgressBar/helpers.js diff --git a/website/storybook/1-components/ScrollView/ScrollViewScreen.js b/packages/website/storybook/1-components/ScrollView/ScrollViewScreen.js similarity index 100% rename from website/storybook/1-components/ScrollView/ScrollViewScreen.js rename to packages/website/storybook/1-components/ScrollView/ScrollViewScreen.js diff --git a/website/storybook/1-components/ScrollView/examples/Horizontal.js b/packages/website/storybook/1-components/ScrollView/examples/Horizontal.js similarity index 100% rename from website/storybook/1-components/ScrollView/examples/Horizontal.js rename to packages/website/storybook/1-components/ScrollView/examples/Horizontal.js diff --git a/website/storybook/1-components/ScrollView/examples/ScrollTo.js b/packages/website/storybook/1-components/ScrollView/examples/ScrollTo.js similarity index 100% rename from website/storybook/1-components/ScrollView/examples/ScrollTo.js rename to packages/website/storybook/1-components/ScrollView/examples/ScrollTo.js diff --git a/website/storybook/1-components/ScrollView/examples/ScrollToEnd.js b/packages/website/storybook/1-components/ScrollView/examples/ScrollToEnd.js similarity index 100% rename from website/storybook/1-components/ScrollView/examples/ScrollToEnd.js rename to packages/website/storybook/1-components/ScrollView/examples/ScrollToEnd.js diff --git a/website/storybook/1-components/Switch/SwitchScreen.js b/packages/website/storybook/1-components/Switch/SwitchScreen.js similarity index 100% rename from website/storybook/1-components/Switch/SwitchScreen.js rename to packages/website/storybook/1-components/Switch/SwitchScreen.js diff --git a/website/storybook/1-components/Switch/examples/CustomSize.js b/packages/website/storybook/1-components/Switch/examples/CustomSize.js similarity index 100% rename from website/storybook/1-components/Switch/examples/CustomSize.js rename to packages/website/storybook/1-components/Switch/examples/CustomSize.js diff --git a/website/storybook/1-components/Switch/examples/PropActiveThumbColor.js b/packages/website/storybook/1-components/Switch/examples/PropActiveThumbColor.js similarity index 100% rename from website/storybook/1-components/Switch/examples/PropActiveThumbColor.js rename to packages/website/storybook/1-components/Switch/examples/PropActiveThumbColor.js diff --git a/website/storybook/1-components/Switch/examples/PropActiveTrackColor.js b/packages/website/storybook/1-components/Switch/examples/PropActiveTrackColor.js similarity index 100% rename from website/storybook/1-components/Switch/examples/PropActiveTrackColor.js rename to packages/website/storybook/1-components/Switch/examples/PropActiveTrackColor.js diff --git a/website/storybook/1-components/Switch/examples/PropDisabled.js b/packages/website/storybook/1-components/Switch/examples/PropDisabled.js similarity index 100% rename from website/storybook/1-components/Switch/examples/PropDisabled.js rename to packages/website/storybook/1-components/Switch/examples/PropDisabled.js diff --git a/website/storybook/1-components/Switch/examples/PropOnValueChange.js b/packages/website/storybook/1-components/Switch/examples/PropOnValueChange.js similarity index 100% rename from website/storybook/1-components/Switch/examples/PropOnValueChange.js rename to packages/website/storybook/1-components/Switch/examples/PropOnValueChange.js diff --git a/website/storybook/1-components/Switch/examples/PropThumbColor.js b/packages/website/storybook/1-components/Switch/examples/PropThumbColor.js similarity index 100% rename from website/storybook/1-components/Switch/examples/PropThumbColor.js rename to packages/website/storybook/1-components/Switch/examples/PropThumbColor.js diff --git a/website/storybook/1-components/Switch/examples/PropTrackColor.js b/packages/website/storybook/1-components/Switch/examples/PropTrackColor.js similarity index 100% rename from website/storybook/1-components/Switch/examples/PropTrackColor.js rename to packages/website/storybook/1-components/Switch/examples/PropTrackColor.js diff --git a/website/storybook/1-components/Switch/examples/PropValue.js b/packages/website/storybook/1-components/Switch/examples/PropValue.js similarity index 100% rename from website/storybook/1-components/Switch/examples/PropValue.js rename to packages/website/storybook/1-components/Switch/examples/PropValue.js diff --git a/website/storybook/1-components/Switch/examples/TouchableWrapper.js b/packages/website/storybook/1-components/Switch/examples/TouchableWrapper.js similarity index 100% rename from website/storybook/1-components/Switch/examples/TouchableWrapper.js rename to packages/website/storybook/1-components/Switch/examples/TouchableWrapper.js diff --git a/website/storybook/1-components/Switch/helpers.js b/packages/website/storybook/1-components/Switch/helpers.js similarity index 100% rename from website/storybook/1-components/Switch/helpers.js rename to packages/website/storybook/1-components/Switch/helpers.js diff --git a/website/storybook/1-components/Text/TextScreen.js b/packages/website/storybook/1-components/Text/TextScreen.js similarity index 100% rename from website/storybook/1-components/Text/TextScreen.js rename to packages/website/storybook/1-components/Text/TextScreen.js diff --git a/website/storybook/1-components/Text/examples/PropChildren.js b/packages/website/storybook/1-components/Text/examples/PropChildren.js similarity index 100% rename from website/storybook/1-components/Text/examples/PropChildren.js rename to packages/website/storybook/1-components/Text/examples/PropChildren.js diff --git a/website/storybook/1-components/Text/examples/PropNumberOfLines.js b/packages/website/storybook/1-components/Text/examples/PropNumberOfLines.js similarity index 100% rename from website/storybook/1-components/Text/examples/PropNumberOfLines.js rename to packages/website/storybook/1-components/Text/examples/PropNumberOfLines.js diff --git a/website/storybook/1-components/Text/examples/PropOnLayout.js b/packages/website/storybook/1-components/Text/examples/PropOnLayout.js similarity index 100% rename from website/storybook/1-components/Text/examples/PropOnLayout.js rename to packages/website/storybook/1-components/Text/examples/PropOnLayout.js diff --git a/website/storybook/1-components/Text/examples/PropOnPress.js b/packages/website/storybook/1-components/Text/examples/PropOnPress.js similarity index 100% rename from website/storybook/1-components/Text/examples/PropOnPress.js rename to packages/website/storybook/1-components/Text/examples/PropOnPress.js diff --git a/website/storybook/1-components/Text/examples/PropSelectable.js b/packages/website/storybook/1-components/Text/examples/PropSelectable.js similarity index 100% rename from website/storybook/1-components/Text/examples/PropSelectable.js rename to packages/website/storybook/1-components/Text/examples/PropSelectable.js diff --git a/website/storybook/1-components/Text/examples/legacy.js b/packages/website/storybook/1-components/Text/examples/legacy.js similarity index 100% rename from website/storybook/1-components/Text/examples/legacy.js rename to packages/website/storybook/1-components/Text/examples/legacy.js diff --git a/website/storybook/1-components/TextInput/TextInputScreen.js b/packages/website/storybook/1-components/TextInput/TextInputScreen.js similarity index 100% rename from website/storybook/1-components/TextInput/TextInputScreen.js rename to packages/website/storybook/1-components/TextInput/TextInputScreen.js diff --git a/website/storybook/1-components/TextInput/examples/AutoExpandingTextInput.js b/packages/website/storybook/1-components/TextInput/examples/AutoExpandingTextInput.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/AutoExpandingTextInput.js rename to packages/website/storybook/1-components/TextInput/examples/AutoExpandingTextInput.js diff --git a/website/storybook/1-components/TextInput/examples/PropAutoCapitalize.js b/packages/website/storybook/1-components/TextInput/examples/PropAutoCapitalize.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropAutoCapitalize.js rename to packages/website/storybook/1-components/TextInput/examples/PropAutoCapitalize.js diff --git a/website/storybook/1-components/TextInput/examples/PropAutoFocus.js b/packages/website/storybook/1-components/TextInput/examples/PropAutoFocus.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropAutoFocus.js rename to packages/website/storybook/1-components/TextInput/examples/PropAutoFocus.js diff --git a/website/storybook/1-components/TextInput/examples/PropBlurOnSubmit.js b/packages/website/storybook/1-components/TextInput/examples/PropBlurOnSubmit.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropBlurOnSubmit.js rename to packages/website/storybook/1-components/TextInput/examples/PropBlurOnSubmit.js diff --git a/website/storybook/1-components/TextInput/examples/PropClearButtonMode.js b/packages/website/storybook/1-components/TextInput/examples/PropClearButtonMode.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropClearButtonMode.js rename to packages/website/storybook/1-components/TextInput/examples/PropClearButtonMode.js diff --git a/website/storybook/1-components/TextInput/examples/PropClearTextOnFocus.js b/packages/website/storybook/1-components/TextInput/examples/PropClearTextOnFocus.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropClearTextOnFocus.js rename to packages/website/storybook/1-components/TextInput/examples/PropClearTextOnFocus.js diff --git a/website/storybook/1-components/TextInput/examples/PropEditable.js b/packages/website/storybook/1-components/TextInput/examples/PropEditable.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropEditable.js rename to packages/website/storybook/1-components/TextInput/examples/PropEditable.js diff --git a/website/storybook/1-components/TextInput/examples/PropKeyboardType.js b/packages/website/storybook/1-components/TextInput/examples/PropKeyboardType.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropKeyboardType.js rename to packages/website/storybook/1-components/TextInput/examples/PropKeyboardType.js diff --git a/website/storybook/1-components/TextInput/examples/PropMaxLength.js b/packages/website/storybook/1-components/TextInput/examples/PropMaxLength.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropMaxLength.js rename to packages/website/storybook/1-components/TextInput/examples/PropMaxLength.js diff --git a/website/storybook/1-components/TextInput/examples/PropMultiline.js b/packages/website/storybook/1-components/TextInput/examples/PropMultiline.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropMultiline.js rename to packages/website/storybook/1-components/TextInput/examples/PropMultiline.js diff --git a/website/storybook/1-components/TextInput/examples/PropNumberOfLines.js b/packages/website/storybook/1-components/TextInput/examples/PropNumberOfLines.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropNumberOfLines.js rename to packages/website/storybook/1-components/TextInput/examples/PropNumberOfLines.js diff --git a/website/storybook/1-components/TextInput/examples/PropOnBlur.js b/packages/website/storybook/1-components/TextInput/examples/PropOnBlur.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropOnBlur.js rename to packages/website/storybook/1-components/TextInput/examples/PropOnBlur.js diff --git a/website/storybook/1-components/TextInput/examples/PropOnChange.js b/packages/website/storybook/1-components/TextInput/examples/PropOnChange.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropOnChange.js rename to packages/website/storybook/1-components/TextInput/examples/PropOnChange.js diff --git a/website/storybook/1-components/TextInput/examples/PropOnChangeText.js b/packages/website/storybook/1-components/TextInput/examples/PropOnChangeText.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropOnChangeText.js rename to packages/website/storybook/1-components/TextInput/examples/PropOnChangeText.js diff --git a/website/storybook/1-components/TextInput/examples/PropOnFocus.js b/packages/website/storybook/1-components/TextInput/examples/PropOnFocus.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropOnFocus.js rename to packages/website/storybook/1-components/TextInput/examples/PropOnFocus.js diff --git a/website/storybook/1-components/TextInput/examples/PropOnKeyPress.js b/packages/website/storybook/1-components/TextInput/examples/PropOnKeyPress.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropOnKeyPress.js rename to packages/website/storybook/1-components/TextInput/examples/PropOnKeyPress.js diff --git a/website/storybook/1-components/TextInput/examples/PropOnSelectionChange.js b/packages/website/storybook/1-components/TextInput/examples/PropOnSelectionChange.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropOnSelectionChange.js rename to packages/website/storybook/1-components/TextInput/examples/PropOnSelectionChange.js diff --git a/website/storybook/1-components/TextInput/examples/PropOnSubmitEditing.js b/packages/website/storybook/1-components/TextInput/examples/PropOnSubmitEditing.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropOnSubmitEditing.js rename to packages/website/storybook/1-components/TextInput/examples/PropOnSubmitEditing.js diff --git a/website/storybook/1-components/TextInput/examples/PropPlaceholder.js b/packages/website/storybook/1-components/TextInput/examples/PropPlaceholder.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropPlaceholder.js rename to packages/website/storybook/1-components/TextInput/examples/PropPlaceholder.js diff --git a/website/storybook/1-components/TextInput/examples/PropPlaceholderTextColor.js b/packages/website/storybook/1-components/TextInput/examples/PropPlaceholderTextColor.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropPlaceholderTextColor.js rename to packages/website/storybook/1-components/TextInput/examples/PropPlaceholderTextColor.js diff --git a/website/storybook/1-components/TextInput/examples/PropSecureTextEntry.js b/packages/website/storybook/1-components/TextInput/examples/PropSecureTextEntry.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropSecureTextEntry.js rename to packages/website/storybook/1-components/TextInput/examples/PropSecureTextEntry.js diff --git a/website/storybook/1-components/TextInput/examples/PropSelectTextOnFocus.js b/packages/website/storybook/1-components/TextInput/examples/PropSelectTextOnFocus.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropSelectTextOnFocus.js rename to packages/website/storybook/1-components/TextInput/examples/PropSelectTextOnFocus.js diff --git a/website/storybook/1-components/TextInput/examples/PropSelection.js b/packages/website/storybook/1-components/TextInput/examples/PropSelection.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropSelection.js rename to packages/website/storybook/1-components/TextInput/examples/PropSelection.js diff --git a/website/storybook/1-components/TextInput/examples/PropStyle.js b/packages/website/storybook/1-components/TextInput/examples/PropStyle.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/PropStyle.js rename to packages/website/storybook/1-components/TextInput/examples/PropStyle.js diff --git a/website/storybook/1-components/TextInput/examples/Rewrite.js b/packages/website/storybook/1-components/TextInput/examples/Rewrite.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/Rewrite.js rename to packages/website/storybook/1-components/TextInput/examples/Rewrite.js diff --git a/website/storybook/1-components/TextInput/examples/TextInputEvents.js b/packages/website/storybook/1-components/TextInput/examples/TextInputEvents.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/TextInputEvents.js rename to packages/website/storybook/1-components/TextInput/examples/TextInputEvents.js diff --git a/website/storybook/1-components/TextInput/examples/TouchableWrapper.js b/packages/website/storybook/1-components/TextInput/examples/TouchableWrapper.js similarity index 100% rename from website/storybook/1-components/TextInput/examples/TouchableWrapper.js rename to packages/website/storybook/1-components/TextInput/examples/TouchableWrapper.js diff --git a/website/storybook/1-components/TextInput/helpers.js b/packages/website/storybook/1-components/TextInput/helpers.js similarity index 100% rename from website/storybook/1-components/TextInput/helpers.js rename to packages/website/storybook/1-components/TextInput/helpers.js diff --git a/website/storybook/1-components/Touchable/TouchableHighlightScreen.js b/packages/website/storybook/1-components/Touchable/TouchableHighlightScreen.js similarity index 100% rename from website/storybook/1-components/Touchable/TouchableHighlightScreen.js rename to packages/website/storybook/1-components/Touchable/TouchableHighlightScreen.js diff --git a/website/storybook/1-components/Touchable/TouchableOpacityScreen.js b/packages/website/storybook/1-components/Touchable/TouchableOpacityScreen.js similarity index 100% rename from website/storybook/1-components/Touchable/TouchableOpacityScreen.js rename to packages/website/storybook/1-components/Touchable/TouchableOpacityScreen.js diff --git a/website/storybook/1-components/Touchable/TouchableWithoutFeedbackScreen.js b/packages/website/storybook/1-components/Touchable/TouchableWithoutFeedbackScreen.js similarity index 100% rename from website/storybook/1-components/Touchable/TouchableWithoutFeedbackScreen.js rename to packages/website/storybook/1-components/Touchable/TouchableWithoutFeedbackScreen.js diff --git a/website/storybook/1-components/Touchable/examples/CustomStyleOverrides.js b/packages/website/storybook/1-components/Touchable/examples/CustomStyleOverrides.js similarity index 100% rename from website/storybook/1-components/Touchable/examples/CustomStyleOverrides.js rename to packages/website/storybook/1-components/Touchable/examples/CustomStyleOverrides.js diff --git a/website/storybook/1-components/Touchable/examples/DelayEvents.js b/packages/website/storybook/1-components/Touchable/examples/DelayEvents.js similarity index 100% rename from website/storybook/1-components/Touchable/examples/DelayEvents.js rename to packages/website/storybook/1-components/Touchable/examples/DelayEvents.js diff --git a/website/storybook/1-components/Touchable/examples/FeedbackEvents.js b/packages/website/storybook/1-components/Touchable/examples/FeedbackEvents.js similarity index 100% rename from website/storybook/1-components/Touchable/examples/FeedbackEvents.js rename to packages/website/storybook/1-components/Touchable/examples/FeedbackEvents.js diff --git a/website/storybook/1-components/Touchable/examples/PropDisabled.js b/packages/website/storybook/1-components/Touchable/examples/PropDisabled.js similarity index 100% rename from website/storybook/1-components/Touchable/examples/PropDisabled.js rename to packages/website/storybook/1-components/Touchable/examples/PropDisabled.js diff --git a/website/storybook/1-components/Touchable/examples/PropHitSlop.js b/packages/website/storybook/1-components/Touchable/examples/PropHitSlop.js similarity index 100% rename from website/storybook/1-components/Touchable/examples/PropHitSlop.js rename to packages/website/storybook/1-components/Touchable/examples/PropHitSlop.js diff --git a/website/storybook/1-components/Touchable/examples/legacy.js b/packages/website/storybook/1-components/Touchable/examples/legacy.js similarity index 100% rename from website/storybook/1-components/Touchable/examples/legacy.js rename to packages/website/storybook/1-components/Touchable/examples/legacy.js diff --git a/website/storybook/1-components/View/ViewScreen.js b/packages/website/storybook/1-components/View/ViewScreen.js similarity index 100% rename from website/storybook/1-components/View/ViewScreen.js rename to packages/website/storybook/1-components/View/ViewScreen.js diff --git a/website/storybook/1-components/View/examples/PropOnLayout.js b/packages/website/storybook/1-components/View/examples/PropOnLayout.js similarity index 100% rename from website/storybook/1-components/View/examples/PropOnLayout.js rename to packages/website/storybook/1-components/View/examples/PropOnLayout.js diff --git a/website/storybook/1-components/View/examples/PropPointerEvents.js b/packages/website/storybook/1-components/View/examples/PropPointerEvents.js similarity index 100% rename from website/storybook/1-components/View/examples/PropPointerEvents.js rename to packages/website/storybook/1-components/View/examples/PropPointerEvents.js diff --git a/website/storybook/1-components/View/examples/PropStyle.js b/packages/website/storybook/1-components/View/examples/PropStyle.js similarity index 100% rename from website/storybook/1-components/View/examples/PropStyle.js rename to packages/website/storybook/1-components/View/examples/PropStyle.js diff --git a/website/storybook/1-components/View/examples/ZIndex.js b/packages/website/storybook/1-components/View/examples/ZIndex.js similarity index 100% rename from website/storybook/1-components/View/examples/ZIndex.js rename to packages/website/storybook/1-components/View/examples/ZIndex.js diff --git a/website/storybook/1-components/View/examples/legacy.js b/packages/website/storybook/1-components/View/examples/legacy.js similarity index 100% rename from website/storybook/1-components/View/examples/legacy.js rename to packages/website/storybook/1-components/View/examples/legacy.js diff --git a/website/storybook/1-components/View/examples/transforms.js b/packages/website/storybook/1-components/View/examples/transforms.js similarity index 100% rename from website/storybook/1-components/View/examples/transforms.js rename to packages/website/storybook/1-components/View/examples/transforms.js diff --git a/website/storybook/1-components/View/helpers.js b/packages/website/storybook/1-components/View/helpers.js similarity index 100% rename from website/storybook/1-components/View/helpers.js rename to packages/website/storybook/1-components/View/helpers.js diff --git a/website/storybook/2-apis/AppRegistry/AppRegistryScreen.js b/packages/website/storybook/2-apis/AppRegistry/AppRegistryScreen.js similarity index 100% rename from website/storybook/2-apis/AppRegistry/AppRegistryScreen.js rename to packages/website/storybook/2-apis/AppRegistry/AppRegistryScreen.js diff --git a/website/storybook/2-apis/AppState/AppStateScreen.js b/packages/website/storybook/2-apis/AppState/AppStateScreen.js similarity index 100% rename from website/storybook/2-apis/AppState/AppStateScreen.js rename to packages/website/storybook/2-apis/AppState/AppStateScreen.js diff --git a/website/storybook/2-apis/AppState/examples/StateChanges.js b/packages/website/storybook/2-apis/AppState/examples/StateChanges.js similarity index 100% rename from website/storybook/2-apis/AppState/examples/StateChanges.js rename to packages/website/storybook/2-apis/AppState/examples/StateChanges.js diff --git a/website/storybook/2-apis/AsyncStorage/AsyncStorageScreen.js b/packages/website/storybook/2-apis/AsyncStorage/AsyncStorageScreen.js similarity index 100% rename from website/storybook/2-apis/AsyncStorage/AsyncStorageScreen.js rename to packages/website/storybook/2-apis/AsyncStorage/AsyncStorageScreen.js diff --git a/website/storybook/2-apis/Clipboard/ClipboardScreen.js b/packages/website/storybook/2-apis/Clipboard/ClipboardScreen.js similarity index 100% rename from website/storybook/2-apis/Clipboard/ClipboardScreen.js rename to packages/website/storybook/2-apis/Clipboard/ClipboardScreen.js diff --git a/website/storybook/2-apis/Clipboard/examples/SetString.js b/packages/website/storybook/2-apis/Clipboard/examples/SetString.js similarity index 100% rename from website/storybook/2-apis/Clipboard/examples/SetString.js rename to packages/website/storybook/2-apis/Clipboard/examples/SetString.js diff --git a/website/storybook/2-apis/Dimensions/DimensionsScreen.js b/packages/website/storybook/2-apis/Dimensions/DimensionsScreen.js similarity index 100% rename from website/storybook/2-apis/Dimensions/DimensionsScreen.js rename to packages/website/storybook/2-apis/Dimensions/DimensionsScreen.js diff --git a/website/storybook/2-apis/Dimensions/examples/DimensionsChange.js b/packages/website/storybook/2-apis/Dimensions/examples/DimensionsChange.js similarity index 100% rename from website/storybook/2-apis/Dimensions/examples/DimensionsChange.js rename to packages/website/storybook/2-apis/Dimensions/examples/DimensionsChange.js diff --git a/website/storybook/2-apis/I18nManager/I18nManagerScreen.js b/packages/website/storybook/2-apis/I18nManager/I18nManagerScreen.js similarity index 100% rename from website/storybook/2-apis/I18nManager/I18nManagerScreen.js rename to packages/website/storybook/2-apis/I18nManager/I18nManagerScreen.js diff --git a/website/storybook/2-apis/I18nManager/examples/RTLToggle.js b/packages/website/storybook/2-apis/I18nManager/examples/RTLToggle.js similarity index 100% rename from website/storybook/2-apis/I18nManager/examples/RTLToggle.js rename to packages/website/storybook/2-apis/I18nManager/examples/RTLToggle.js diff --git a/website/storybook/2-apis/Linking/LinkingScreen.js b/packages/website/storybook/2-apis/Linking/LinkingScreen.js similarity index 100% rename from website/storybook/2-apis/Linking/LinkingScreen.js rename to packages/website/storybook/2-apis/Linking/LinkingScreen.js diff --git a/website/storybook/2-apis/Linking/examples/OpenURL.js b/packages/website/storybook/2-apis/Linking/examples/OpenURL.js similarity index 100% rename from website/storybook/2-apis/Linking/examples/OpenURL.js rename to packages/website/storybook/2-apis/Linking/examples/OpenURL.js diff --git a/website/storybook/2-apis/NetInfo/NetInfoScreen.js b/packages/website/storybook/2-apis/NetInfo/NetInfoScreen.js similarity index 100% rename from website/storybook/2-apis/NetInfo/NetInfoScreen.js rename to packages/website/storybook/2-apis/NetInfo/NetInfoScreen.js diff --git a/website/storybook/2-apis/PanResponder/PanResponderScreen.js b/packages/website/storybook/2-apis/PanResponder/PanResponderScreen.js similarity index 100% rename from website/storybook/2-apis/PanResponder/PanResponderScreen.js rename to packages/website/storybook/2-apis/PanResponder/PanResponderScreen.js diff --git a/website/storybook/2-apis/PanResponder/examples/DraggableCircle.js b/packages/website/storybook/2-apis/PanResponder/examples/DraggableCircle.js similarity index 100% rename from website/storybook/2-apis/PanResponder/examples/DraggableCircle.js rename to packages/website/storybook/2-apis/PanResponder/examples/DraggableCircle.js diff --git a/website/storybook/2-apis/PixelRatio/PixelRatioScreen.js b/packages/website/storybook/2-apis/PixelRatio/PixelRatioScreen.js similarity index 100% rename from website/storybook/2-apis/PixelRatio/PixelRatioScreen.js rename to packages/website/storybook/2-apis/PixelRatio/PixelRatioScreen.js diff --git a/website/storybook/2-apis/Platform/PlatformScreen.js b/packages/website/storybook/2-apis/Platform/PlatformScreen.js similarity index 100% rename from website/storybook/2-apis/Platform/PlatformScreen.js rename to packages/website/storybook/2-apis/Platform/PlatformScreen.js diff --git a/website/storybook/2-apis/StyleSheet/StyleSheetScreen.js b/packages/website/storybook/2-apis/StyleSheet/StyleSheetScreen.js similarity index 100% rename from website/storybook/2-apis/StyleSheet/StyleSheetScreen.js rename to packages/website/storybook/2-apis/StyleSheet/StyleSheetScreen.js diff --git a/website/storybook/2-apis/Vibration/VibrationScreen.js b/packages/website/storybook/2-apis/Vibration/VibrationScreen.js similarity index 100% rename from website/storybook/2-apis/Vibration/VibrationScreen.js rename to packages/website/storybook/2-apis/Vibration/VibrationScreen.js diff --git a/website/storybook/3-demos/Calculator/Calculator.js b/packages/website/storybook/3-demos/Calculator/Calculator.js similarity index 100% rename from website/storybook/3-demos/Calculator/Calculator.js rename to packages/website/storybook/3-demos/Calculator/Calculator.js diff --git a/website/storybook/3-demos/Calculator/CalculatorScreen.js b/packages/website/storybook/3-demos/Calculator/CalculatorScreen.js similarity index 100% rename from website/storybook/3-demos/Calculator/CalculatorScreen.js rename to packages/website/storybook/3-demos/Calculator/CalculatorScreen.js diff --git a/website/storybook/3-demos/Game2048/Game2048.js b/packages/website/storybook/3-demos/Game2048/Game2048.js similarity index 100% rename from website/storybook/3-demos/Game2048/Game2048.js rename to packages/website/storybook/3-demos/Game2048/Game2048.js diff --git a/website/storybook/3-demos/Game2048/Game2048Screen.js b/packages/website/storybook/3-demos/Game2048/Game2048Screen.js similarity index 100% rename from website/storybook/3-demos/Game2048/Game2048Screen.js rename to packages/website/storybook/3-demos/Game2048/Game2048Screen.js diff --git a/website/storybook/3-demos/Game2048/GameBoard.js b/packages/website/storybook/3-demos/Game2048/GameBoard.js similarity index 100% rename from website/storybook/3-demos/Game2048/GameBoard.js rename to packages/website/storybook/3-demos/Game2048/GameBoard.js diff --git a/website/storybook/3-demos/Sandbox/Sandbox.js b/packages/website/storybook/3-demos/Sandbox/Sandbox.js similarity index 100% rename from website/storybook/3-demos/Sandbox/Sandbox.js rename to packages/website/storybook/3-demos/Sandbox/Sandbox.js diff --git a/website/storybook/3-demos/Sandbox/SandboxScreen.js b/packages/website/storybook/3-demos/Sandbox/SandboxScreen.js similarity index 100% rename from website/storybook/3-demos/Sandbox/SandboxScreen.js rename to packages/website/storybook/3-demos/Sandbox/SandboxScreen.js diff --git a/website/storybook/3-demos/TicTacToe/TicTacToe.js b/packages/website/storybook/3-demos/TicTacToe/TicTacToe.js similarity index 100% rename from website/storybook/3-demos/TicTacToe/TicTacToe.js rename to packages/website/storybook/3-demos/TicTacToe/TicTacToe.js diff --git a/website/storybook/3-demos/TicTacToe/TicTacToeScreen.js b/packages/website/storybook/3-demos/TicTacToe/TicTacToeScreen.js similarity index 100% rename from website/storybook/3-demos/TicTacToe/TicTacToeScreen.js rename to packages/website/storybook/3-demos/TicTacToe/TicTacToeScreen.js diff --git a/website/storybook/ui-explorer/AppText.js b/packages/website/storybook/ui-explorer/AppText.js similarity index 100% rename from website/storybook/ui-explorer/AppText.js rename to packages/website/storybook/ui-explorer/AppText.js diff --git a/website/storybook/ui-explorer/Code.js b/packages/website/storybook/ui-explorer/Code.js similarity index 100% rename from website/storybook/ui-explorer/Code.js rename to packages/website/storybook/ui-explorer/Code.js diff --git a/website/storybook/ui-explorer/DocItem.js b/packages/website/storybook/ui-explorer/DocItem.js similarity index 100% rename from website/storybook/ui-explorer/DocItem.js rename to packages/website/storybook/ui-explorer/DocItem.js diff --git a/website/storybook/ui-explorer/ExternalLink.js b/packages/website/storybook/ui-explorer/ExternalLink.js similarity index 100% rename from website/storybook/ui-explorer/ExternalLink.js rename to packages/website/storybook/ui-explorer/ExternalLink.js diff --git a/website/storybook/ui-explorer/Section.js b/packages/website/storybook/ui-explorer/Section.js similarity index 100% rename from website/storybook/ui-explorer/Section.js rename to packages/website/storybook/ui-explorer/Section.js diff --git a/website/storybook/ui-explorer/StyleList.js b/packages/website/storybook/ui-explorer/StyleList.js similarity index 100% rename from website/storybook/ui-explorer/StyleList.js rename to packages/website/storybook/ui-explorer/StyleList.js diff --git a/website/storybook/ui-explorer/TextList.js b/packages/website/storybook/ui-explorer/TextList.js similarity index 100% rename from website/storybook/ui-explorer/TextList.js rename to packages/website/storybook/ui-explorer/TextList.js diff --git a/website/storybook/ui-explorer/UIExplorer.js b/packages/website/storybook/ui-explorer/UIExplorer.js similarity index 97% rename from website/storybook/ui-explorer/UIExplorer.js rename to packages/website/storybook/ui-explorer/UIExplorer.js index 1da7904f5..521ae33e5 100644 --- a/website/storybook/ui-explorer/UIExplorer.js +++ b/packages/website/storybook/ui-explorer/UIExplorer.js @@ -22,7 +22,7 @@ const Divider = () => ; const SourceLink = ({ uri }) => ( View source code on GitHub diff --git a/website/storybook/ui-explorer/index.js b/packages/website/storybook/ui-explorer/index.js similarity index 100% rename from website/storybook/ui-explorer/index.js rename to packages/website/storybook/ui-explorer/index.js diff --git a/website/storybook/ui-explorer/insertBetween.js b/packages/website/storybook/ui-explorer/insertBetween.js similarity index 100% rename from website/storybook/ui-explorer/insertBetween.js rename to packages/website/storybook/ui-explorer/insertBetween.js diff --git a/website/yarn.lock b/packages/website/yarn.lock similarity index 100% rename from website/yarn.lock rename to packages/website/yarn.lock