An open API service indexing awesome lists of open source software.

https://github.com/sackrin/react-micro-ui-mui

Helpers and components to add material UI to react micro ui components
https://github.com/sackrin/react-micro-ui-mui

Last synced: over 1 year ago
JSON representation

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

Awesome Lists containing this project

README

          

## 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

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

const Example = (props) => (

Example Component
);

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

export default hasMui;
```