File size: 380 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { Title } from '@solidjs/meta'

export default function Home() {
  return (
    <main>
      <Title>Solid Query v5</Title>

      <h1>Solid Query v5</h1>

      <p>
        This demo demonstrates how Solid Query can be used in SSR, with
        streaming support. Use the links in the top left to navigate between the
        various examples.
      </p>
    </main>
  )
}