collect-system/apps/web/src/app/main/page.tsx

7 lines
169 B
TypeScript

import { useAuth } from "@web/src/providers/auth-provider"
export default function MainPage() {
const { user } = useAuth()
return <>hello,{user?.username}</>
}