Skip to content

React Components for the Material Design Lite UI framework

License

Notifications You must be signed in to change notification settings

joshq00/react-mdl

 
 

Repository files navigation

React-MDL is a set of React components build on top of Material Design Lite. It's based on their version 1.0.6.

Join the #react-mdl channel of the Reactiflux Discord community.

Requirements

Because of an issue with the original Layout component from MDL that makes it incompatible with React (a fix is already submitted and should land in MDL 2.0), you can't use the original .js and .css files. Instead, I provide you the files with my the fix. (Read this for more information on the issue).

The files are available in this repository inside the /extra/ folder: material.css and material.js

<link rel="stylesheet" href="material.css">
<script src="material.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">

How to use the components

import the entire library

import ReactMDL from 'react-mdl';

var Button = ReactMDL.Button;
var Card = ReactMDL.Card

// or
import { Button, Card, CardText } from 'react-mdl';

import a specific component

import Button from 'react-mdl/lib/Button';
import { Card, CardText, CardActions } from 'react-mdl/lib/Card';

License

MIT, see LICENSE.md for details.

About

React Components for the Material Design Lite UI framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 53.5%
  • JavaScript 46.0%
  • Other 0.5%