@zakary/ui
v0.1.1
Published
UI components.
Downloads
3
Maintainers
Readme
@zakary/ui
A personal component library for routine development.
It's mine personal component library for routine development, so it may not stable all the time.
Installation
Install the package in your project directory with:
// with npm
npm install @zakary/ui
// with yarn
yarn add @zakary/ui
Usage
The path under mui just import from @material-ui, so you could use like this:
import React from 'react';
import ReactDOM from 'react-dom';
import Button from '@zakary/ui/mui/core/Button';
function App() {
return (
<Button variant="contained" color="primary">
Hello World
</Button>
);
}
ReactDOM.render(<App />, document.querySelector('#app'));
And also you could read the office docs right here.
License
This project is licensed under the terms of the MIT license.