forked from crowetic/commerce
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
|