Initial version for solidjs and vite as build tool

This commit is contained in:
Guntis Smaukstelis
2023-05-14 22:07:16 +03:00
parent bbf1eb0c01
commit 16c9714f8a
19 changed files with 3682 additions and 19 deletions
+19
View File
@@ -0,0 +1,19 @@
import type { Component } from 'solid-js';
import logo from './assets/logo.svg';
import styles from './css/App.module.css';
const App: Component = () => {
return (
<div class={styles.App}>
<header class={styles.header}>
<img src={logo} class={styles.logo} alt="logo" />
<p>
Weather tool web
</p>
</header>
</div>
);
};
export default App;