@entando/ui
v0.6.0
Published
entando ui theme for material-ui
Downloads
20
Readme
Entando UI
this is a theme that can be applied to any Material-UI project. this package exports the theme directly that can just be applied through a theme provider:
import entandoUI from '@entando/ui';
import { ThemeProvider } from '@material-ui/core/styles';
const app = () => (
<ThemeProvider theme={entandoUI}>
<Container>
<Table />
<TextInput />
<Buttons />
<Radios />
</Container>
</ThemeProvider>
);