Skip to content

Instantly share code, notes, and snippets.

@arun12209
Created January 29, 2023 10:15
Embed
What would you like to do?
<template>
<div class="weather-app">
<h1>Weather Report</h1>
<form>
<label for="city">City:</label>
<input id="city" type="text" onchange={handleCityChange} value={city} />
<button type="button" onclick={getWeather}>Get Weather</button>
</form>
<div class="weather-report">
<p>City: {city}</p>
<p>Temperature: {temperature}</p>
<p>Humidity: {humidity}</p>
<p>Description: {description}</p>
</div>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment