local-weather/app/page.tsx

15 lines
290 B
TypeScript
Raw Normal View History

2024-05-04 13:40:23 +00:00
import Weather from '../components/Weather'
2024-05-03 14:48:24 +00:00
2024-05-04 13:40:23 +00:00
const location = {
latitude: '55.645519',
longtitude: '12.549600'
2024-05-04 07:39:10 +00:00
}
export default function Home() {
return (
<main>
<h1>The weather in Sluseholmen for the next 3 days</h1>
2024-05-04 13:40:23 +00:00
<Weather location={location}/>
2024-05-03 14:48:24 +00:00
</main>
);
2024-05-04 13:40:23 +00:00
}