я использую fileName.module.s css, чтобы стилизовать мои реагирующие элементы
this is my component
import React from "react";
import Aux from '../../hoc/Aux';
import classes from './Layout.module.scss';
const layout = (props) => (
<Aux>
<div>Toolbar, SideDrawer, Backdrop</div>
<main className={classes.Content}>
{props.children}
</main>
</Aux>
);
export default layout;
, и это мой s css
.Content {
margin-top: 72px;
color:red;
}
я не знаю почему, но s css не отражает мои основные элементы и идеи?
спасибо