rum-goggles/v1/frontend/src/screens/Dashboard.jsx

20 lines
474 B
React
Raw Normal View History

2024-04-04 14:46:14 +00:00
import { useState } from 'react';
import { CircleGreenBackground, Heart } from '../assets';
2024-04-04 14:46:14 +00:00
import PageDetails from '../components/PageDetails';
import PageSideBar from '../components/PageSideBar';
import './Dashboard.css';
2024-05-02 19:30:25 +00:00
import ChatBot from '../components/ChatBot';
function Dashboard() {
return (
<div className='dashboard'>
2024-04-04 14:46:14 +00:00
<PageSideBar />
<PageDetails />
2024-05-02 19:30:25 +00:00
<ChatBot />
</div>
);
}
export default Dashboard;