4
0
forked from crowetic/commerce

Fix other types

This commit is contained in:
Luis Alvarez 2020-10-25 19:03:47 -05:00
parent 29aedfc149
commit 0657b882cd
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ import { useOverlay, useModal, OverlayContainer } from '@react-aria/overlays'
interface Props { interface Props {
className?: string className?: string
children?: any children?: any
open: boolean open?: boolean
onClose?: () => void onClose?: () => void
} }

View File

@ -3,7 +3,7 @@ import { Logo, Modal, Button } from '@components/ui'
export default function ForgotPassword() { export default function ForgotPassword() {
return ( return (
<div className="pb-20"> <div className="pb-20">
<Modal close={() => {}}> <Modal onClose={() => {}}>
<div className="h-80 w-80 flex flex-col justify-between py-3 px-3"> <div className="h-80 w-80 flex flex-col justify-between py-3 px-3">
<div className="flex justify-center pb-12 "> <div className="flex justify-center pb-12 ">
<Logo width="64px" height="64px" /> <Logo width="64px" height="64px" />