@energi/ui
v0.2.10
Published
Energi UI library
Downloads
37
Readme
Energi UI
UI library based on Material UI.
Publish
yarn build
yarn publish
Usage with React
Package Installation
yarn add @energi/ui
Example
import { Seo, Button } from '@energi/ui';
const MyComponent = () => {
const meta = [
{
name: 'image',
property: 'og:image',
content: 'https://link.to/your/image',
},
];
return (
<>
<Seo title="page title" description="page description" meta={meta} />
<Button variant="contained">Hello</Button>
</>
)
};