├── .DS_Store ├── README.md ├── package.json ├── screenshot.png ├── script.js ├── template.config.js └── template ├── .expo-shared └── assets.json ├── .gitignore ├── App.tsx ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── src ├── components │ ├── Button │ │ ├── Button.tsx │ │ ├── Button.types.ts │ │ └── index.ts │ └── index.ts └── index.ts ├── storybook ├── addons.js ├── index.js ├── rn-addons.js └── stories │ ├── Button │ └── Button.stories.tsx │ └── index.js ├── tsconfig.json └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/screenshot.png -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | console.log("This is post init script"); 4 | -------------------------------------------------------------------------------- /template.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template.config.js -------------------------------------------------------------------------------- /template/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/.expo-shared/assets.json -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/App.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './storybook'; -------------------------------------------------------------------------------- /template/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/app.json -------------------------------------------------------------------------------- /template/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/assets/adaptive-icon.png -------------------------------------------------------------------------------- /template/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/assets/favicon.png -------------------------------------------------------------------------------- /template/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/assets/icon.png -------------------------------------------------------------------------------- /template/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/assets/splash.png -------------------------------------------------------------------------------- /template/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/babel.config.js -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/package.json -------------------------------------------------------------------------------- /template/src/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/src/components/Button/Button.tsx -------------------------------------------------------------------------------- /template/src/components/Button/Button.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/src/components/Button/Button.types.ts -------------------------------------------------------------------------------- /template/src/components/Button/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Button' -------------------------------------------------------------------------------- /template/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/src/components/index.ts -------------------------------------------------------------------------------- /template/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components'; -------------------------------------------------------------------------------- /template/storybook/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/storybook/addons.js -------------------------------------------------------------------------------- /template/storybook/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/storybook/index.js -------------------------------------------------------------------------------- /template/storybook/rn-addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/storybook/rn-addons.js -------------------------------------------------------------------------------- /template/storybook/stories/Button/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/storybook/stories/Button/Button.stories.tsx -------------------------------------------------------------------------------- /template/storybook/stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/storybook/stories/index.js -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/tsconfig.json -------------------------------------------------------------------------------- /template/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalartdealers/react-native-component-library-with-storybook-template/HEAD/template/yarn.lock --------------------------------------------------------------------------------