refactor: moving to components

This commit is contained in:
2025-07-18 15:28:34 +01:00
parent 1a9731c4bb
commit 5130691ab9
5 changed files with 52 additions and 41 deletions

View File

@@ -0,0 +1,7 @@
import { Component, ParentProps } from "solid-js";
export const AppWrapper: Component<ParentProps> = (props) => {
return (
<div class="flex w-full justify-center h-screen">{props.children}</div>
);
};