- Add Github Action to build and release with automatic versioning
- Add LICENSE
- Add CONTRIBUTING guide
This project uses Heroicons for icons.
First, navigate to the docs folder:
cd ./docsYou can run yarn storybook to start on-device Storybook or yarn start to start your Expo app. This functionality is controlled via environment variables and Expo constants.
# Start Storybook (default)
yarn storybook
# iOS
yarn storybook:ios
# Android
yarn storybook:androidTo update stories for the native (on-device) version:
yarn storybook-generateTo start React Native Web Storybook:
yarn storybook:webTo build React Native Web Storybook:
yarn build-storybookTo work on components:
- Navigate to the
docsfolder:cd ./docs - Create new components in the
src/componentsfolder - Follow these guidelines:
- All components must have a story file named
[ComponentName].stories.tsx - All components must have a type file named
[ComponentName].types.ts - Create the main component file
[ComponentName].tsx
- All components must have a story file named
- Add the new component to
src/index.tsto make it accessible - Build and commit your changes
To build for release:
npm run buildFor continuous building during development:
npm run build:watchWe welcome contributions! Please check back soon for our CONTRIBUTING guide.