Prettier and replace class with ClassName

This commit is contained in:
incognitotgt 2024-01-01 19:00:00 -05:00
parent ddc2f47f97
commit d0ef235c24
18 changed files with 122 additions and 101 deletions

View file

@ -2,10 +2,10 @@ import { Header } from "./Header";
export function HeaderRoute(props: { children: any }) {
return (
<div class="flex h-screen flex-col">
<div className="flex h-screen flex-col">
<Header />
<div class="flex-1 bg-primary">
<main class="h-full">{props.children}</main>
<div className="flex-1 bg-primary">
<main className="h-full">{props.children}</main>
</div>
</div>
);