local-weather/app/page.tsx

15 lines
290 B
TypeScript

import Weather from '../components/Weather'
const location = {
latitude: '55.645519',
longtitude: '12.549600'
}
export default function Home() {
return (
<main>
<h1>The weather in Sluseholmen for the next 3 days</h1>
<Weather location={location}/>
</main>
);
}