28 lines
580 B
TypeScript
28 lines
580 B
TypeScript
import type { Component } from 'solid-js'
|
|
import styles from './App.module.css'
|
|
|
|
// TODO: we could write a test client
|
|
import '../src'
|
|
|
|
const App: Component = () => {
|
|
return (
|
|
<div class={styles.App}>
|
|
<header class={styles.header}>
|
|
<p>
|
|
Edit <code>src/App.tsx</code> and save to reload.
|
|
</p>
|
|
<a
|
|
class={styles.link}
|
|
href="https://github.com/solidjs/solid"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
Learn Solid
|
|
</a>
|
|
</header>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default App
|