29 lines
767 B
TypeScript
29 lines
767 B
TypeScript
import TanStackTable from "@/components/table/TanStackTable";
|
|
import { Box, Card, Typography } from "@mui/material";
|
|
import React from "react";
|
|
import CardHeader from "@mui/material/CardHeader";
|
|
import CardContent from "@mui/material/CardContent";
|
|
import TitleHeader from "@/components/titleHeader/titleHeader";
|
|
|
|
const HomePage = () => {
|
|
return (
|
|
<Box>
|
|
<TitleHeader />
|
|
<Card
|
|
sx={{ boxShadow: "none", borderRadius: "12px", marginBlockStart: 2 }}
|
|
>
|
|
<CardHeader
|
|
title="Projects"
|
|
fontWeight={"bold"}
|
|
sx={{ borderBlockEnd: "1px solid var(--primary_light)" }}
|
|
/>
|
|
<CardContent>
|
|
<TanStackTable />
|
|
</CardContent>
|
|
</Card>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default HomePage;
|