MDUI in ReactJS.
Demo is a preview application for your reference.
npm install react-mdui --save
Take Button
for example:
import { Button } from 'react-mdui';
const button = (
<Button
node="button"
raised
block
ripple
disabled
>
Click Me!
</Button>
);
Below is a list of available components. Each of them can be imported by either default import of named import for flexibility, namely
import { Button } from 'react-mdui';
import Button from 'react-mdui/Button';
- AppBar
- Button
- Checkbox
- Chip
- Collapse
- Divider
- Drawer
- Headroom
- Icon
- List
- Panel
- Progress
- Radio
- Slider
- Spinner
- Subheader
- Switch
- Tab
- Toolbar
MIT. See LICENSE.md for details.