FrontEnd: Playing with store (solidjs)

This commit is contained in:
2022-09-09 10:39:19 +02:00
parent 637dfb45d8
commit d527500034
7 changed files with 169 additions and 23 deletions

View File

@@ -0,0 +1,9 @@
const AuthLoader = () => {
return (
<div>
<h2>Auth Loading...</h2>
</div>
)
}
export default AuthLoader;

View File

@@ -0,0 +1,13 @@
interface TestComponentProps {
// add props here
}
function TestComponent(props: TestComponentProps) {
return (
<div>
<h2>TestComponent</h2>
</div>
)
}
export default TestComponent;