7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
import { atom } from "recoil";
|
|
import { Airport } from "./airport";
|
|
|
|
export const airportsState = atom({
|
|
key: 'airportsState',
|
|
default: [] as Airport[]
|
|
}); |