mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
17 lines
No EOL
312 B
TypeScript
17 lines
No EOL
312 B
TypeScript
import React from 'react'
|
|
import ForgotPasswordClient from './forgot'
|
|
import { Metadata } from 'next'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'LearnHouse - Forgot Password',
|
|
}
|
|
|
|
function ForgotPasswordPage() {
|
|
return (
|
|
<>
|
|
<ForgotPasswordClient />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default ForgotPasswordPage |