import "./NoAccess.css" import {Link, NavLink} from "react-router-dom"; import {AuthActions} from "../../redux/actions/authActions"; import {useDispatch} from "react-redux"; export const NoAccess = (props) => { const dispatch = useDispatch(); const signOut = () => { dispatch(AuthActions.signOut()); window.location = "/"; } return (

Thank you for registering!

Your application has been received and is pending review. We will contact you soon for further authentication.
Please check your email for updates.

{props.user && }
) }