1 2 3 4 5 6 7 8 9 10 11 12 13 14
import React from 'react'; import Navbar from '../components/Navbar'; const Dashboard = () => { return ( <div> <Navbar /> <h1>Dashboard</h1> {/* Add dashboard content here */} </div> ); }; export default Dashboard;