@superdispatch/ui
v0.50.6
Published
[](https://www.npmjs.com/package/@superdispatch/ui) [](https://bundlephobia.com/result?p=@superdispatch/ui)
Keywords
Readme
@superdispatch/ui
Installation
yarn add @superdispatch/ui @material-ui/core @material-ui/icons @material-ui/styles @mdi/jsUsage
import { Button, ThemeProvider } from '@superdispatch/ui';
import { Typography } from '@material-ui/core';
export function App() {
return (
<ThemeProvider>
<Typography variant="h3" gutterBottom={true}>
Hello 👋
</Typography>
<Button color="blue">Yay 🎉</Button>
<Button color="red">Nay 👎</Button>
</ThemeProvider>
);
}