mirror of
https://github.com/LucasVbr/meeting-app.git
synced 2026-07-09 23:18:07 +00:00
26 lines
588 B
TypeScript
26 lines
588 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|