Webview: improve linting & typechecks

This commit is contained in:
Johannes Kirschbauer
2024-05-26 18:37:29 +02:00
parent b0d5ef01ca
commit 4c4c94c508
11 changed files with 1785 additions and 68 deletions

View File

@@ -0,0 +1,9 @@
import { Component, JSXElement } from "solid-js";
interface LayoutProps {
children: JSXElement;
}
export const Layout: Component<LayoutProps> = (props) => {
return <div class="grid grid-cols-8">{props.children}</div>;
};