mirror of
https://github.com/LucasVbr/meeting-app.git
synced 2026-07-09 23:18:07 +00:00
fix(react-chartjs version ): Fixed react-chartjs version outdated
This commit is contained in:
+18
-17
@@ -1,25 +1,26 @@
|
||||
import Head from 'next/head';
|
||||
import Navbar from '@/components/Navbar';
|
||||
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 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';
|
||||
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>
|
||||
<>
|
||||
<Head>
|
||||
<title>{websiteName}</title>
|
||||
</Head>
|
||||
|
||||
<Box>
|
||||
<PieChart/>
|
||||
<BarChart/>
|
||||
<LineChart />
|
||||
</Box>
|
||||
</>
|
||||
<Box>
|
||||
{/* <PieChart /> */}
|
||||
{/* <BarChart /> */}
|
||||
<LineChart />
|
||||
</Box>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user