With CSS Materials, all installations are completed just by installing css-materials.
npm install css-materials
To apply the styles from css-materials, import the CSS file.
import 'css-materials/dist/styles.css';
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;