⬆️ Update dependencies
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
export default () => {
|
||||
return <h1>Hello world!!!</h1>;
|
||||
};
|
||||
Reference in New Issue
Block a user