0.0.3 • Published 4 years ago

@sackrin/react-micro-ui-mui v0.0.3

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

React Micro UI Material UI

Helpers and components to add material UI to react micro ui components

Installation

This library can be installed using the following command

npm i -s @sackrin/react-micro-ui-mui

Example Usage

import React from 'react';
import { withMui } from '@sackrin/react-micro-ui-mui';

const Example = (props) => (<div>Example Component</div>);

export const hasMui = withMui(Example, { ...CustomMUITheme } , 'addSomeUniqueCssClassPrefix');

export default hasMui;