9 lines
217 B
TypeScript
9 lines
217 B
TypeScript
|
|
import { Accessor, Component } from "solid-js";
|
||
|
|
|
||
|
|
export const Result: Component<{ getCity: Accessor<string|undefined>}> = ({ getCity }) => {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
{ getCity() }
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|