Select weather fields for country view

This commit is contained in:
Guntis Smaukstelis
2023-12-25 12:09:58 +02:00
parent a48b9df91f
commit 5324f4c176
6 changed files with 75 additions and 7 deletions
+2 -2
View File
@@ -33,8 +33,8 @@ export const SelectCity: Component<{
onClick={selectAll}
/>
<ul>{cityList.map(city =>
<label>
<li>
<label>
<input
type="checkbox"
name="city"
@@ -43,8 +43,8 @@ export const SelectCity: Component<{
onClick={handleSelect}
/>
{city}
</label>
</li>
</label>
)}
</ul>
</div>