You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
620 B
28 lines
620 B
2 years ago
|
import type { Component } from 'solid-js';
|
||
|
|
||
|
import logo from './logo.svg';
|
||
|
import styles from './App.module.css';
|
||
|
|
||
|
const App: Component = () => {
|
||
|
return (
|
||
|
<div class={styles.App}>
|
||
|
<header class={styles.header}>
|
||
|
<img src={logo} class={styles.logo} alt="logo" />
|
||
|
<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;
|