JavaScript Other
Clone or download
urkopineda and oliviertassinari [docs] Add Tentu in the showcase (#12122)
* [Showcase] Add Tentu

Add Tentu web app to Discover More > Showcase

* compress image
Latest commit ce13979 Jul 12, 2018
Permalink
Failed to load latest commit information.
.circleci [core] Use Chrome Headless for the tests over PhantomJS (#11961) Jun 24, 2018
.github [github] Update the issue template (#11488) May 19, 2018
docs [docs] Add Tentu in the showcase (#12122) Jul 12, 2018
examples [Snackbar] Fix SnackbarOrigin TypeScript definition (#12083) Jul 9, 2018
flow-typed/npm [Tooltip] Rework the implementation (#12085) Jul 8, 2018
flow [docs] Use next.js (#7759) Aug 18, 2017
packages [Button] Fix IE11 support of CSS 'width:initial' (#12119) Jul 12, 2018
pages [docs] Add color selector (#12053) Jul 11, 2018
scripts [core] Upgrade preval (#11958) Jun 23, 2018
static [docs] Add Tentu in the showcase (#12122) Jul 12, 2018
test [docs] Add color selector (#12053) Jul 11, 2018
.babelrc [core] Upgrade preval (#11958) Jun 23, 2018
.browserslistrc [jss] Fix the last w3c issue I'm aware of (#10063) Jan 27, 2018
.codecov.yml [core] Move to the packages structure (#11033) Apr 16, 2018
.editorconfig [.editorconfig] Add max_line_length (#9580) Dec 20, 2017
.eslintignore [Icons] Update Material Design Icons (#12016) Jul 1, 2018
.eslintrc.js [core] Upgrade the dev dependencies (#12049) Jul 3, 2018
.eslintrc.spellcheck.js [examples] Take ownership on the next.js example (#7703) Aug 8, 2017
.firebaserc [docs] IE11 2nd iteration Apr 15, 2017
.flowconfig [core] Move material-ui to @material-ui/core (#11310) May 10, 2018
.gitattributes Add gitattributes Dec 12, 2014
.gitignore [Icons] Update Material Design Icons (#12016) Jul 1, 2018
.size-limit.js [docs] Add color selector (#12053) Jul 11, 2018
.yarnrc [core] Upgrade Babel 6 to Babel 7 (#10964) May 8, 2018
BACKERS.md [docs] Add Core UI (#12015) Jun 29, 2018
CHANGELOG.md [CHANGELOG] Prepare v1.3.1 Jul 2, 2018
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md Aug 9, 2017
CONTRIBUTING.md [CONTRIBUTING] The v1-beta branch is almost gone, master May 15, 2018
GOVERNANCE.md [docs] Do SEO for the components (#11963) Jun 24, 2018
LICENSE Initial commit Aug 18, 2014
README.md [README] Update backers Jul 3, 2018
ROADMAP.md [docs] Do SEO for the components (#11963) Jun 24, 2018
SUPPORT.md Update SUPPORT.md (#9702) Jan 2, 2018
docker-compose.yml [core] Prune dead dependencies (#10963) Apr 8, 2018
next.config.js [core] Upgrade Babel 6 to Babel 7 (#10964) May 8, 2018
package.json [core] Upgrade dev dependencies (#12117) Jul 11, 2018
prettier.config.js [core] Remove parser specification to fix JSON issue (#11763) Jun 7, 2018
tsconfig.json [core] Move to the packages structure (#11033) Apr 16, 2018
yarn.lock [core] Upgrade dev dependencies (#12117) Jul 11, 2018

README.md

Material-UI logo

Material-UI

React components that implement Google's Material Design.

npm package npm downloads CircleCI Gitter Coverage Status CII Best Practices Code style Follow on Twitter PeerDependencies Dependencies DevDependencies Average time to resolve an issue

Installation

Material-UI is available as an npm package.

Stable channel v1

// with npm
npm install @material-ui/core

// with yarn
yarn add @material-ui/core

v0.x (Migration to v1)

// with npm
npm install material-ui

// with yarn
yarn add material-ui

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

Supporting Material-UI

Material-UI is an MIT-licensed open source project. It's an independent project with ongoing development made possible thanks to the support of these awesome backers. If you'd like to join them, please consider:

Your contributions, donations, and sponsorship allow us to build a sustainable organization. They directly support office hours, continued enhancements, great documentation and learning materials!

What's the difference between Patreon and OpenCollective?

Funds donated via Patreon directly support Olivier Tassinari's work on Material-UI. Funds donated via OpenCollective also support Olivier, but will be shared amongst other contributors and pay for operating expenses. These funds are managed transparently through the OpenCollective website. Your name/logo will receive proper recognition and exposure by donating on either platform.

Gold Sponsors

Gold Sponsors are those who have pledged $500/month and more to Material-UI.

via Patreon

0 1 1

via OpenCollective

0 1 2 3 4 5 6 7 8 9

Usage

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

import React from 'react';
import ReactDOM from 'react-dom';
import Button from '@material-ui/core/Button';

function App() {
  return (
    <Button variant="raised" color="primary">
      Hello World
    </Button>
  );
}

ReactDOM.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

Questions

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.

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.