12 lines
279 B
TypeScript
12 lines
279 B
TypeScript
import React from 'react'
|
|
|
|
const Dashboard = () => {
|
|
return (
|
|
<div className="d-flex justify-content-center align-items-center" style={{ minHeight: '60vh' }}>
|
|
<h1 className="text-body-secondary">Welcome to Admin Sample</h1>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Dashboard
|