Skip to content

Commit

Permalink
Add a Pie Chart Scene
Browse files Browse the repository at this point in the history
  • Loading branch information
fezzopro committed Nov 23, 2023
1 parent ab889e0 commit 0dc9de8
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/scenes/Pie/index.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { Box } from '@mui/material';
import Header from '../../components/Shared/Header/Header';
import PieChart from '../../components/Shared/PieChart';
import { mockPieData as data } from '../../data/mockData';

const Pie = () => (
<Box m="20px">
<Header title="Pie Chart" subTitle="Customized Simple Pie Chart" />
<Box height="75vh">
<PieChart data={data} />
</Box>
</Box>
);

export default Pie;

0 comments on commit 0dc9de8

Please sign in to comment.