import React, { useEffect, useState } from 'react'; import { useHistory } from 'react-router'; const ChildSignUpError = () => { const history = useHistory(); const gotoLogin = () => { history.push({pathname: '/c-account/login', state: ''}); } return (

本登録エラー

登録の経過時間が過ぎております。
お手数ですが再度招待ユーザーに連絡し、再登録の手続きをお願いいたします。
) } export default ChildSignUpError;