refactor: reorganize frontend code

This commit is contained in:
Ryan Walters
2025-08-20 02:19:12 -05:00
parent f90f377277
commit 3414880705
6 changed files with 78 additions and 72 deletions

4
src/types/graph.ts Normal file
View File

@@ -0,0 +1,4 @@
export type Frame = {
id: string;
data: { x: string | number; y: number }[];
};