import React from 'react'; const Sidebar = ({ activeSection, onSectionChange }) => { const menuItems = [ { id: 'general-content', label: '1. General Guidelines' }, { id: 'search-content', label: '2. Search Sample Requirements' } ]; return (
{menuItems.map((item) => ( ))}
); }; export default Sidebar;