import React from 'react'; interface EducationPanelProps { lessons: Array<{ id: string; title: string; completed: boolean }>; onLessonSelect: (id: string) => void; } export const EducationPanel: React.FC = ({ lessons, onLessonSelect }) => { return (

Education

); };