Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import React, { useEffect } from 'react';
- import { useNavigate } from "react-router-dom";
- const Activate = () => {
- const navigate = useNavigate();
- useEffect(() => {
- navigate('/')
- }, [navigate])
- return (
- <div>Activation Page</div>
- )
- }
- export default Activate;
Advertisement
Add Comment
Please, Sign In to add comment