mirror of
https://github.com/stoatchat/javascript-solid-livekit-components.git
synced 2026-07-18 21:05:35 -04:00
29 lines
609 B
TypeScript
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
|