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

19 lines
499 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';
function Dashboard() {
return (
<div className='dashboard'>
2024-04-04 14:46:14 +00:00
<PageSideBar />
<PageDetails />
<div style={{ backgroundColor: '#344453', width: '100%', height: '100%' }}></div>
</div>
);
}
export default Dashboard;