import React, { useState } from 'react'; import Sidebar from '../../partials/Sidebar'; import Header from '../../partials/Header'; import ProfileSidebar from '../../partials/community/ProfileSidebar'; import ProfileBody from '../../partials/community/ProfileBody'; function Profile() { const [sidebarOpen, setSidebarOpen] = useState(false); const [profileSidebarOpen, setProfileSidebarOpen] = useState(false); return (
{/* Sidebar */} {/* Content area */}
{/* Site header */}
{/* Profile sidebar */} {/* Profile body */}
); } export default Profile;