mastro-elfo-mui v2.24.0
This is a collection of components that extend @material-ui.
Install
yarn add mastro-elfo-mui
or
npm i mastro-elfo-mui
Documentation
The full documentation is available on GitHub Wiki.
Getting started
The start point of this library is then AppContainer component. This is not required, but gives the app some basic configuration.
AppContainer creates wrapper for the theme, the React Suspense component, the Error boundary, the notifier (with notistack), and the router (with react-router-dom).
Example
This example creates an AppContainer with a global theme and that uses HashRouter.
import React from "react";
import { HashRouter } from "react-router-dom";
import primary from "@material-ui/core/colors/blue";
import secondary from "@material-ui/core/colors/pink";
import { AppContainer } from "mastro-elfo-mui";
import HomePage from "./pages/HomePage";
function App() {
return (
<AppContainer
ThemeProps={{
palette: { primary, secondary },
}}
RouterProps={{
Router: HashRouter,
routes: [{ path: "/", component: HomePage, exact: true }],
}}
/>
);
}The Page component creates the structure for a page.
A Page has basically an header and a content. They can be any component, but they work well with Header and Content components. header and content are rendered inside a Paper so they reflect the type of palette (light or dark).
A Page also has a print property that is rendered with @media print; on the other hand header and content don't render when printed.
Example
This example creates a basic page with an header and content.
import React from "react";
import { Page, Header, Content } from "mastro-elfo-mui";
function HomePage() {
return (
<Page
header={<Header>Home Page</Header>}
content={
<Content>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras non mi
tincidunt, mattis sapien non, facilisis massa.
</Content>
}
/>
);
}Many components in this library extend their counterpart in material-ui in a specific way.
Other components group some complex structure.
Scripts
The directory 'node_modules/mastro-elfo-mui/dist/scripts/' contains utility scripts.
Example
This command prints a page template.
node node_modules/mastro-elfo-mui/dist/scripts/create-page.js homepageThis command prints a context template.
node node_modules/mastro-elfo-mui/dist/scripts/create-context.js mycontext4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago