Hello.
I'm trying to separate my weather data from my index file (where it works well).
I created a new file called Weather.astro in the components folder. Moved into it the fetch command and the const 'data = await response.json();' I assume I'm supposed to export the data so I can use it on the index page, but I can't get it working.
Then I need the other side, where I import: 'import Weather from '../components/Weather.astro';' and then how do I get the data out of that so I can parse the JSON?
Thank you!