Initial Language Graph Implementation

This commit is contained in:
2023-12-28 22:34:36 -03:00
parent 12e8aadf7b
commit f4f11a8a05
9 changed files with 249 additions and 14 deletions

View File

@@ -1,5 +1,6 @@
export type Language = {
name: string;
color: string;
percentage: number;
}