metar grid changes

This commit is contained in:
2023-08-26 14:17:37 -04:00
parent d4196a24ec
commit bea8fc6895
10 changed files with 224 additions and 83 deletions

7
src/atoms/index.ts Normal file
View File

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