Select city on canvas
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import { Accessor, Component } from "solid-js";
|
||||
|
||||
export const Result: Component<{ getCity: Accessor<string|undefined>}> = ({ getCity }) => {
|
||||
return (
|
||||
<div>
|
||||
{ getCity() }
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user