import React, { useState } from 'react'; import { MedSidebar } from './MedSidebar.tsx'; import { Bell, Search, Settings, HelpCircle } from 'lucide-react'; interface MedLayoutProps { children: React.ReactNode; currentView: string; onNavigate: (view: any) => void; } export const MedLayout: React.FC = ({ children, currentView, onNavigate }) => { return (
{/* Sidebar */} {/* Main Content Area */}
{/* Premium Top Bar */}
{[ { icon: Bell, alert: true }, { icon: HelpCircle, alert: false }, { icon: Settings, alert: false } ].map((item, i) => ( ))}
Acesso Premium Portal Médico Cassems
MED
{/* Dashboard/View Container */}
{children}
); };