-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtxt
More file actions
22 lines (20 loc) · 856 Bytes
/
txt
File metadata and controls
22 lines (20 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div
className='grid grid-cols-2 gap-4 mt-6'
>
<div className='text-center'>
<p className='text-gray-400'>Humidity</p>
<p className='font-bold'>{weather.main.humidity}%</p>
</div>
<div>
<p className='text-gray-400'>wind</p>
<p className='font-bold'>{weather.wind.speed}m/s</p>
</div>
<div>
<p className='text-gray-400'>Preasure</p>
<p className='font-bold'>{weather.main.pressure}</p>
</div>
<div>
<p className='text-gray-400'>Feels like</p>
<p className='font-bold'>{Math.round(weather.main.feels_like)}°</p>
</div>
</div>