Dodo67

Aactivate2.jsx

Feb 11th, 2022
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React, { useEffect } from 'react';
  2. import { useNavigate } from "react-router-dom";
  3.  
  4.  
  5. const Activate = () => {
  6.     const navigate = useNavigate();
  7.  
  8.     useEffect(() => {
  9.         navigate('/')
  10.     }, [navigate])
  11.  
  12.     return (
  13.         <div>Activation Page</div>
  14.     )
  15. }
  16.  
  17. export default Activate;
Advertisement
Add Comment
Please, Sign In to add comment