-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathProjectTabAbout.tsx
40 lines (38 loc) · 968 Bytes
/
ProjectTabAbout.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import {
Box,
VStack,
SimpleGrid,
TabPanel,
} from "@chakra-ui/react";
import { useProjectPageContext } from "../context/ProjectPageContext";
import { CircuitAbout } from "../components/CircuitAbout";
export const ProjectTabAbout: React.FC = () => {
const { circuitsClean } = useProjectPageContext();
return (
<TabPanel>
<VStack
alignSelf={"stretch"}
alignItems={"center"}
justifyContent={"center"}
spacing={8}
py={0}
>
<Box alignItems="center" alignSelf={"stretch"} w="full">
<SimpleGrid
alignSelf={"stretch"}
maxW={["392px", "390px", "100%"]}
columns={1}
spacing={6}
>
{circuitsClean.map((circuit, index) => (
<CircuitAbout
key={index}
{...{circuit}}
/>
))}
</SimpleGrid>
</Box>
</VStack>
</TabPanel>
);
}