@chicho-ui/material
v0.0.37
Published
React components that implement Google's Material Design.
Downloads
68
Maintainers
Readme
Installation
React components that implement Google's Material Design.
// with npm
npm install @chicho-ui/material
// with yarn
yarn add @chicho-ui/material
Usage
Here is a quick example to get you started, it's all you need:
import ReactDOM from 'react-dom';
import Button from '@chicho-ui/material/Button';
function App() {
return <Button variant="contained">Hello World</Button>;
}
ReactDOM.render(<App />, document.querySelector('#app'));