Getting Started

Installation

With CSS Materials, all installations are completed just by installing css-materials.

npm install css-materials

Styling

To apply the styles from css-materials, import the CSS file.

import 'css-materials/dist/styles.css';

Mission accomplished!

Use the components by calling them within your application.

import { Button } from "css-materials";

const App = () => {
    return (
        <Button>This is fine.</Button>
    )
}

export default App;