feat(*): Add basic graphing

This commit is contained in:
Josh Creek
2023-01-01 19:33:33 +00:00
parent a3f11af180
commit ff33ba4088
8 changed files with 198 additions and 32 deletions
+8
View File
@@ -0,0 +1,8 @@
type ChartData = {
labels: string[];
datasets: {
label: string;
backgroundColor: string;
data: number[];
}[];
};