mirror of
https://github.com/LucasVbr/meeting-app.git
synced 2026-07-09 15:08:06 +00:00
Create Line Pie Bar Chart
This commit is contained in:
@@ -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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user