atlp-rwanda/hackers-ec-Fe

View on GitHub
src/pages/forgottenPassword/ForgotPassword.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import ForgottonPasswordContainer from '../../components/Layouts/ForgottonPasswordContainer';
import ForgotPasswordForm from '../../components/forgottonPassword/ForgottonPasswordForm';

const ForgotPassword = () => {
    return (
        <>
            <ForgottonPasswordContainer>
                <ForgotPasswordForm />
            </ForgottonPasswordContainer>
        </>
    );
};

export default ForgotPassword;