'use client' import LocationSearch from '@/components/LocationSearch'; import WeatherNow from '../components/WeatherNow' import { useState } from 'react'; import { defaultState } from './defaultState'; import { coordType } from '@/types/types'; const defaultGeoLocation: coordType = { lat: 55.647229603577124, lng: 12.54995987788925 } export default function Home() { const [geoLocation, setGeoLocation] = useState({ lat: 55.647229603577124, lng: 12.54995987788925 }); return (

The weather in {} for the next 3 days

{JSON.stringify(geoLocation)}

); }