Removed nivo package. Added saving info on multiple time ticket entry with issues BOD-224

This commit is contained in:
Patrick Fic
2020-08-04 16:37:16 -07:00
parent e8e7e76473
commit 0af4ffc9f0
6 changed files with 30 additions and 254 deletions

View File

@@ -1,4 +1,3 @@
import { Pie } from "@nivo/pie";
import React from "react";
export default function PartsStatusPie({ partsList }) {
@@ -22,12 +21,5 @@ export default function PartsStatusPie({ partsList }) {
};
});
const commonProperties = {
width: 250,
height: 250,
margin: { top: 40, right: 60, bottom: 40, left: 60 },
animate: true,
};
return <Pie {...commonProperties} data={pieData} innerRadius={0.5} />;
return <div>{JSON.stringify(pieData)}</div>;
}