mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2026-04-17 17:42:19 +00:00
9 lines
210 B
TypeScript
9 lines
210 B
TypeScript
"use client"
|
|
|
|
import type React from "react"
|
|
|
|
export default function DocsLayout({ children }: { children: React.ReactNode }) {
|
|
return <div className="min-h-screen bg-white text-gray-900">{children}</div>
|
|
}
|
|
|