aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/Home/Home.jsx
blob: 35ed08e36899f34ed2b3a2476d351d2763ebb804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Header from "../../components/Header/Header";
import CustomGrid from "../../components/CustomGrid/CustomGrid";
import styles from "./Home.module.css";
const Home = () => {
  return (
    <>
      <div class={styles.container}>
        <Header />
        <CustomGrid />
      </div>
    </>
  );
};

export default Home;