simple website with default airports

This commit is contained in:
2023-08-24 10:00:40 -04:00
parent cb005a1b98
commit 08bcce3813
31 changed files with 9244 additions and 855 deletions

7
src/js/state.ts Normal file
View File

@@ -0,0 +1,7 @@
import { atom } from "recoil";
import { Airport } from "./airport";
export const airportsState = atom({
key: 'airportsState',
default: [] as Airport[]
});