mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
13 lines
No EOL
427 B
TypeScript
13 lines
No EOL
427 B
TypeScript
import PageLoading from '@components/Objects/Loaders/PageLoading'
|
|
import React from 'react'
|
|
|
|
function DashboardHome() {
|
|
return (
|
|
<div className="flex items-center justify-center mx-auto min-h-screen flex-col space-x-3">
|
|
<PageLoading />
|
|
<div className='text-neutral-400 font-bold animate-pulse text-2xl'>This page is work in progress</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default DashboardHome |