├── .circleci └── config.yml ├── .eslintrc.js ├── .gitignore ├── .storybook ├── addons.js ├── config.js └── webpack.config.js ├── App.test.tsx ├── App.tsx ├── README.md ├── __mocks__ └── globalMock.js ├── __snapshots__ └── App.test.tsx.snap ├── assets └── retro-regular.ttf ├── babel.config.js ├── components ├── Box │ └── Box.tsx ├── Text │ ├── Text.stories.tsx │ └── Text.tsx └── index.ts ├── package.json ├── stories ├── 0-Welcome.stories.js ├── 1-Button.stories.js ├── 2-Constants.stories.js ├── 3-LinearGradient.stories.js ├── 4-Font.stories.js ├── 5-Restyle.stories.js └── index.js ├── themes └── default.ts ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.storybook/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/.storybook/addons.js -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/.storybook/webpack.config.js -------------------------------------------------------------------------------- /App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/App.test.tsx -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/globalMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/__mocks__/globalMock.js -------------------------------------------------------------------------------- /__snapshots__/App.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/__snapshots__/App.test.tsx.snap -------------------------------------------------------------------------------- /assets/retro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/assets/retro-regular.ttf -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/Box/Box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/components/Box/Box.tsx -------------------------------------------------------------------------------- /components/Text/Text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/components/Text/Text.stories.tsx -------------------------------------------------------------------------------- /components/Text/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/components/Text/Text.tsx -------------------------------------------------------------------------------- /components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/components/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/package.json -------------------------------------------------------------------------------- /stories/0-Welcome.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/stories/0-Welcome.stories.js -------------------------------------------------------------------------------- /stories/1-Button.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/stories/1-Button.stories.js -------------------------------------------------------------------------------- /stories/2-Constants.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/stories/2-Constants.stories.js -------------------------------------------------------------------------------- /stories/3-LinearGradient.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/stories/3-LinearGradient.stories.js -------------------------------------------------------------------------------- /stories/4-Font.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/stories/4-Font.stories.js -------------------------------------------------------------------------------- /stories/5-Restyle.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/stories/5-Restyle.stories.js -------------------------------------------------------------------------------- /stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/stories/index.js -------------------------------------------------------------------------------- /themes/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/themes/default.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-native-component-library-template/HEAD/yarn.lock --------------------------------------------------------------------------------