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