import React from 'react'; import { Outlet, useNavigate } from 'react-router-dom'; import CardList from './CardList'; // Import the CardList component const Setup = () => { const navigate = useNavigate(); return (
{/* Show CardList when at /dashboard/setup */} {window.location.pathname === '/dashboard/setup' ? ( ) : ( )}
); }; export default Setup;