11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
const DashboardIndexLayout = () => {
|
|
return (
|
|
<div className="relative">
|
|
<div className="flex min-h-screen items-center justify-center bg-gray-100">
|
|
Dashboard Page
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
export default DashboardIndexLayout
|