22 lines
484 B
TypeScript
22 lines
484 B
TypeScript
// import { Link, routes } from '@redwoodjs/router'
|
|
import { Metadata } from '@redwoodjs/web'
|
|
|
|
import { useAuth } from 'src/auth'
|
|
|
|
const DashboardPage = () => {
|
|
const { currentUser } = useAuth()
|
|
return (
|
|
<>
|
|
<Metadata title="Dashboard" description="Dashboard page" />
|
|
|
|
<div className="mx-8 my-8">
|
|
<h1 className="text-2xl">
|
|
Hello {currentUser.firstName} {currentUser.lastName}
|
|
</h1>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default DashboardPage
|