Create Line Pie Bar Chart

This commit is contained in:
burgu
2023-05-19 17:36:29 +02:00
parent 96da92a34f
commit 7bd6c59af5
9 changed files with 4326 additions and 12514 deletions
+25
View File
@@ -0,0 +1,25 @@
import Head from 'next/head';
import Navbar from '@/components/Navbar';
import BarChart from '@/components/graph/BarChart'
import PieChart from '@/components/graph/PieChart';
import LineChart from '@/components/graph/LineChart';
import {Box} from '@chakra-ui/react';
import {websiteName} from '@/lib/constants';
import { useRef, useEffect } from 'react';
export default function Graphique() {
return (
<>
<Head><title>{websiteName}</title></Head>
<Box>
<PieChart/>
<BarChart/>
<LineChart />
</Box>
</>
);
}