import { NextPage } from 'next' import Layout from '../components/layout' import useApiData from '../hooks/use-api-data' import Airport from '../types/airport' const Page: NextPage = () => { const airports = useApiData('/api/airports', []) return

Code Challenge: Airports

All Airports

{airports.map(airport => (
{airport.name}, {airport.city}
{airport.country}
))}
} export default Page