@fitch-digital/fitch-ui
v0.1.7
Published
UI Library for Fitch Digital Projects
Readme
@fitch-digital/fitch-ui
develop
npm startbuild
npm run buildpublish to NPM
Run the following steps:
- manually bump version on package.json
npm run build// builds the UMD build to the dist foldernpm run storybook:build// builds the storybook docs- commit and push all code to GitHub.
- Tag commit with build number added on step 1
git push --tagsto push the tag to github.- publish using
npm publish --access public
publish docs to github.io
npm run build && npm run storybook:buildTODO
- create tabs component
<Tabs
tabs={['some child', 'another child']}
onChange={(index) => console.log('change to', index)}
>
<SomeChildComponent />
<AnotherChild />
</Tabs>- create pull down menu
<Pulldown options={[]}/>