Im trying to setup an app using Muicss for styling my components in a React js app.
Below is the code of a very simple example but when I go to my browser the button has no style in it, and I don't know if I'm missing something, I used Material Design before and I had no issues.
import React from 'react';
import Button from 'muicss/lib/react/button';
export default class Example extends React.Component {
render() {
return (
<div>
<Button variant="raised" color="danger">button</Button>
</div>
);
}
}
Can someone help me to get if I'm missing something, I installed the library using NPM and inside my node_modules folder I can see all the files from the Muicss library.
In the console there's no error or something weird, the weird thing is that the components have no styles...

