blob: ce3472e3f064568d14d3797e5d14ff2c1872e1a8 (
plain) (
tree)
|
|
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;
|