@erfffun/ui
Version:
Energi UI library
37 lines (30 loc) • 539 B
Markdown
UI library based on Material UI.
```sh
yarn publish
```
```sh
yarn add @energi/ui
```
```js
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>
</>
)
};
```