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
- Host: GitHub
- URL: https://github.com/sackrin/react-micro-ui-mui
- Owner: sackrin
- License: mit
- Created: 2020-04-10T00:21:19.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T01:06:26.000Z (over 3 years ago)
- Last Synced: 2025-01-21T13:23:30.343Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 2.3 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
```