yurroCc / material-ui

React components that implement Google's Material Design.

Home Page:http://www.material-ui.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Note

For how-to questions and other non-issues, please use StackOverflow instead of Github issues. There is a StackOverflow tag called "material-ui" that you can use to tag your questions.

npm package npm download CircleCI Gitter Coverage Status CII Best Practices Code style Follow on Twitter

PeerDependencies Dependencies DevDependencies

Material-UI is a set of React components that implement Google's Material Design specification.

We've moved!

We've moved the repo from callemall/material-ui to mui-org/material-ui. Find out more from @callemall/haicea.

Installation

Material-UI is available as an npm package.

Stable channel

npm install --save material-ui

Pre-release channel

npm install --save material-ui@next

Please note that @next will only point to pre-releases; to get the latest stable release use @latest instead.

Usage

Here is a quick example to get you started, it's all you need:

import React from 'react';
import { render } from 'react-dom';
import Button from 'material-ui/Button';

function App() {
  return (
    <Button>
      Hello World
    </Button>
  );
}

render(<App />, document.querySelector('#app'));

Yes, it's really all you need to get started as you can see in this live and interactive demo:

Edit Button

Examples

Are you looking for an example project to get started? We host some.

Documentation

Check out our documentation website.

Contributing

We'd greatly appreciate any contribution you make. :)

Changelog

Recently Updated? Please read the changelog.

Roadmap

The future plans and high priority features and enhancements can be found in the ROADMAP.md file.

Thanks

Thank you to BrowserStack for providing the infrastructure that allows us to test in real browsers.

License

This project is licensed under the terms of the MIT license.

About

React components that implement Google's Material Design.

http://www.material-ui.com

License:MIT License


Languages

Language:JavaScript 98.4%Language:TypeScript 1.6%Language:HTML 0.0%Language:Shell 0.0%