@biteship/atom
v1.4.0
Published
Component library that used accross biteship's website
Downloads
76
Keywords
Readme
@biteship/atom
Collections of react components that being used accross all Biteship's website
Installation
To install the stable version
npm install @biteship/atom
Include this on your tailwind.config.js file
module.exports = {
...
purge: {
enabled: true,
content: [
"./node_modules/@biteship/atom/**/*.{js,jsx,ts,tsx}"
],
},
...
}
Change browserlist on your package.json file
...
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
...
To import the component
import { Button } from '@biteship/atom';