web_next/weather_app/app/utils/DefaultState.tsx

40 lines
No EOL
739 B
TypeScript

const DefaultState = [
{
name: "Chicago",
country: "US",
state: "Illinois",
lat: 41.8781,
lon: -87.6298,
},
{
name: "Madison",
country: "US",
state: "Wisconsin",
lat: 43.0722,
lon: -89.4008,
},
{
name: "Milwaukee",
country: "US",
state: "Wisconsin",
lat: 43.0006,
lon: -87.9668,
},
{
name: "New York",
country: "US",
state: "New York",
lat: 40.7127,
lon: -74.0059,
},
{
name: "Los Angeles",
country: "US",
state: "Califonia",
lat: 34.0989,
lon: -118.3277,
},
]
export default DefaultState;