1.0.7 • Published 4 years ago
codefries-library v1.0.7
codefries-library is a free to use react component library created by CodeFries
Install
$ npm i codefries-library
Usage
import Button from 'codefries-library/dist/components/Button'
//standard react hooks component
const App = () => {
return (
<div>
<!--
Check out the documentation for
all parameters
-->
<Button theme="primary">Click Me</Button>
</div>
)
}
export default App