import Footer from "./Footer"; import Navbar from "./Navbar"; import { useSelector } from "react-redux"; const Dashboard = () => { const { user } = useSelector((state) => ({ ...state.auth })); return (





A beautiful, easy-to-use, and secure Investor Portal that gives your investors everything they may need

{user?.result?._id && (
)}
); }; export default Dashboard;