Files
javascript-solid-livekit-co…/dev/App.tsx
T
2024-03-30 11:58:35 +00:00

29 lines
609 B
TypeScript

import type { Component } from 'solid-js'
import styles from './App.module.css'
import { Hello } from '../src'
const App: Component = () => {
return (
<div class={styles.App}>
<header class={styles.header}>
<h1>
<Hello></Hello>
</h1>
<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