mirror of
https://github.com/vercel/commerce.git
synced 2025-05-01 15:27:50 +00:00
14 lines
256 B
TypeScript
14 lines
256 B
TypeScript
import { Layout } from '@components/core'
|
|
import { Container } from '@components/ui'
|
|
|
|
export default function ForgotPassword() {
|
|
return (
|
|
<Container>
|
|
<h2>Forgot Password</h2>
|
|
<p></p>
|
|
</Container>
|
|
)
|
|
}
|
|
|
|
ForgotPassword.Layout = Layout
|