grindery-ui
v0.10.1
Published
Reusable React components library for Grindery projects.
Downloads
11
Readme
Grindery UI
Reusable React components library for Grindery projects.
Based on Material UI.
Documentation: https://grindery-io.github.io/grindery-ui/
How to use
Install library
yarn add grindery-ui
or
npm install grindery-ui
Add components to your React app
Add Theme Provider at the highest level possible.
import { ThemeProvider } from "grindery-ui";
const App = () => {
return (
<ThemeProvider>
<RestOfTheApp />
</ThemeProvider>
);
};
Then you can import and use the rest of the components inside your app:
import { CircularProgress } from "grindery-ui";
const RestOfTheApp = () => {
return <CircularProgress />;
};
See documentation for more examples.
Development
See DEVELOPMENT.md file.
License
MIT