feat: first draft

This commit is contained in:
Loic Coenen
2025-10-29 21:41:12 +01:00
commit 283b3e6885
36 changed files with 3073 additions and 0 deletions

9
src/state/state.ts Normal file
View File

@@ -0,0 +1,9 @@
import type { Station } from "../types";
export type State = {
loading: boolean,
stations: Station[] | undefined,
error: Error | undefined,
}