1.0.0-beta.22 • Published 6 years ago

@material-next/core v1.0.0-beta.22

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

Note

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

Material-Next

npm package CircleCI Gitter Coverage Status

PeerDependencies Dependencies DevDependencies

Extensible React components that implement Material Design UI.

This is a fork

We've have forked the repo from mui-org/material-ui to material-next/material-next. Find out more.

Installation

Material-Next is available as an npm package.

Stable channel

npm install --save @material-next/core

Pre-release channel

npm install --save @material-next/core@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-next/core/Button';

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

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

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.