p7/8 done

This commit is contained in:
2026-04-14 23:52:16 +10:00
parent 189449a28a
commit 0a71925410
3 changed files with 107 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import FormControl from '@mui/material/FormControl';
import * as React from 'react';
import {years, countries, types } from "./groupdata";
import GroupGrid from "./components/GroupGrid";
import GroupChart from "./components/GroupChart";
type tSelect = "Страна" | "Год" | "Тип";
@@ -40,6 +41,7 @@ function Chart() {
</Select>
</FormControl>
</Box>
<GroupChart data={groupData} />
<GroupGrid data={groupData} />
<CustomFooter />
</>