Init solidjs
This commit is contained in:
parent
ba1b1d7080
commit
cd14a32e42
150 changed files with 238 additions and 0 deletions
19
src/routes/index.tsx
Normal file
19
src/routes/index.tsx
Normal file
|
@ -0,0 +1,19 @@
|
|||
import { Title } from "solid-start";
|
||||
import Counter from "~/components/Counter";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<main>
|
||||
<Title>Hello World</Title>
|
||||
<h1>Hello world!</h1>
|
||||
<Counter />
|
||||
<p>
|
||||
Visit{" "}
|
||||
<a href="https://start.solidjs.com" target="_blank">
|
||||
start.solidjs.com
|
||||
</a>{" "}
|
||||
to learn how to build SolidStart apps.
|
||||
</p>
|
||||
</main>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue