moved useSocket into Context

This commit is contained in:
Gavin McDonald
2025-06-25 18:09:29 -04:00
parent e7ebb0223b
commit 1c28a603b7
3 changed files with 63 additions and 35 deletions

View File

@@ -109,8 +109,3 @@ export interface Tilt {
rotateX: number;
rotateY: number;
}
export interface AppContext {
tilts: Tilt[];
setTilts: (tilts: Tilt[]) => void;
}