JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q26226F
  • License LGPL-2.1

entando ui theme for material-ui

Package Exports

  • @entando/ui

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@entando/ui) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

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>
);