// student-card.jsx — 画面2: 生徒カルテ詳細(佐藤 ハナ) function StudentCard() { const student = STUDENTS.find(s => s.id === 's001'); // 佐藤 ハナ const [tab, setTab] = React.useState('timeline'); // Timeline event icon const kindIcon = (k) => { const s = { stroke:'currentColor', fill:'none', strokeWidth:1.6, strokeLinecap:'round', strokeLinejoin:'round' }; switch (k) { case 'lstep': return ; case 'visit': return ; case 'briefing': return ; case 'applied': return ; case 'alert': return ; default: return null; } }; return (