10 lines
163 B
TypeScript
10 lines
163 B
TypeScript
import React from 'react'
|
|
import DashboardPage from './components/DashboardPage'
|
|
|
|
const page = () => {
|
|
return (
|
|
<DashboardPage />
|
|
)
|
|
}
|
|
|
|
export default page
|