import { Title } from "@solidjs/meta"; import { createAsync } from "@solidjs/router"; import Counter from "~/components/Counter"; import { api } from "~/lib/api"; export default function Home() { const hello = createAsync(() => api.example.hello.query("world")); return (
Hello World

Hello world!

Visit{" "} start.solidjs.com {" "} to learn how to build SolidStart apps.

        {JSON.stringify(hello(), null, 2)}
      
); }