aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/Dashboard.jsx
blob: ce3472e3f064568d14d3797e5d14ff2c1872e1a8 (plain) (blame)
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;