Month.js 230 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 import Grid from "./Grid"; import GridHead from "./GridHead"; import "../styles/Month.css"; const Month = () => { return ( <div className="Month"> <GridHead /> <Grid /> </div> ); }; export default Month;