chore: use path aliasing

This commit is contained in:
Ryan Walters
2025-08-21 22:04:08 -05:00
parent f83fc24d13
commit cd8feeabd2
6 changed files with 13 additions and 14 deletions

View File

@@ -1,7 +1,7 @@
import { useDragDropPaths } from "./hooks/useDragDropPaths";
import Graph from "./components/graph";
import DropOverlay from "./components/drop-overlay";
import type { Frame } from "./types/graph";
import { useDragDropPaths } from "@/hooks/useDragDropPaths";
import Graph from "@/components/graph";
import DropOverlay from "@/components/drop-overlay";
import type { Frame } from "@/types/graph";
function App() {
const data: Frame[] = [];