@moneymade/moneymade-ui
v3.7.23
Published
Moneymade UI is a library of components developed by [moneymade.io](https://moneymade.io/)
Downloads
377
Readme
MoneyMade-UI
Moneymade UI is a library of components developed by moneymade.io
Installation
Use the package manager npm to install the library
npm install @moneymade/moneymade-ui
or with yarn
yarn add @moneymade/moneymade-ui
Usage
Import styles to React
import '@moneymade/moneymade-ui/lib/index.css'
Or to SASS
@import '~@moneymade/moneymade-ui/lib/index.css';
Then import components and use them
import { MainButton } from '@moneymade/moneymade-ui'
const Demo = () => {
const [count, setCount] = useState(0)
return (
<section>
<div>{count}</dic>
<MainButton onClick={() => setCount(count + 1)}>Add more</MainButton>
</section>
)
}
Demo
Check documentation for more info
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.