Usage

Usage

Get started with React and Material-UI in no time.

Material-UI components work in isolation. They are self-supporting, and will inject, and only inject, the styles they need to display. They don't rely on any global style-sheets such as normalize.css,

You can use any of the components as demonstrated in the documentation. Please refer to each component's demo page to see how they should be imported.

Quick start

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

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

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

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

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

Globals

Material-UI usage experience can be improved with a handful of important global that you’ll need to be aware of.

Responsive meta tag

Material-UI is developed mobile first, a strategy in which we first write code for mobile devices and then scale up components as necessary using CSS media queries. To ensure proper rendering and touch zooming for all devices, add the responsive viewport meta tag to your <head> element.

<meta
  name="viewport"
  content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
/>

CssBaseline

Material-UI provides an optional CssBaseline component. It's fixing some inconsistencies across browsers and devices while providing slightly more opinionated resets to common HTML elements.

Versioned documentation

This documentation always reflects the latest stable version of Material-UI. You can find older versions of the documentation on a separate page.

Next steps

Now that you have an idea of the basic setup, it's time to learn more about: