File Manager - Dashboard Routes #2

Merged
ditorodev merged 14 commits from riobuenoDevelops/fileManager-dashboard into develop 2024-03-13 17:05:35 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 619963688b - Show all commits

View File

@ -4,7 +4,7 @@ import lumeColorLogoPng from "~/images/lume-color-logo.png?url"
import discordLogoPng from "~/images/discord-logo.png?url"
import { Link } from "@remix-run/react"
export const DashboardLayout = ({ children }: React.PropsWithChildren<{}>) => {
export const GeneralLayout = ({ children }: React.PropsWithChildren<{}>) => {
return (
<div className="p-10 h-full flex flex-row">
<header className="w-full flex flex-col max-w-[240px] h-full">

View File

@ -1,4 +1,4 @@
import { DashboardLayout } from "~/components/dashboard-layout"
import { GeneralLayout } from "~/components/general-layout"
export default function Dashboard() {
const isLogged = true
@ -7,8 +7,8 @@ export default function Dashboard() {
}
return (
<DashboardLayout>
<GeneralLayout>
<div>Hello</div>
</DashboardLayout>
</GeneralLayout>
)
}