mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-14 12:20:01 -04:00
Prettier and replace class with ClassName
This commit is contained in:
parent
ddc2f47f97
commit
d0ef235c24
18 changed files with 122 additions and 101 deletions
|
@ -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>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue