⬆️ Update dependencies

This commit is contained in:
Alexandre Mouton-Brady
2022-02-09 22:54:09 +01:00
parent 1b9295413b
commit 99ab328aa2
22 changed files with 1021 additions and 694 deletions
+7 -1
View File
@@ -1,7 +1,13 @@
import type { Component } from 'solid-js';
import Comp from './Comp';
const App: Component = () => {
return <h1>Hello world!</h1>;
return (
<>
<h1>Hello world!!!!</h1>
<Comp />
</>
);
};
export default App;
+3
View File
@@ -0,0 +1,3 @@
export default () => {
return <h1>Hello world!!!</h1>;
};