Select city on canvas

This commit is contained in:
Guntis Smaukstelis
2024-01-06 23:48:23 +02:00
parent cb3e525fc2
commit d6707b7bb0
6 changed files with 82 additions and 32 deletions
+9
View File
@@ -0,0 +1,9 @@
import { Accessor, Component } from "solid-js";
export const Result: Component<{ getCity: Accessor<string|undefined>}> = ({ getCity }) => {
return (
<div>
{ getCity() }
</div>
);
}