refactor: moving to components
This commit is contained in:
7
frontend/src/components/app-wrapper/index.tsx
Normal file
7
frontend/src/components/app-wrapper/index.tsx
Normal 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>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user