17 lines
480 B
TypeScript
17 lines
480 B
TypeScript
// 簡化版 TestHeader - 復用原設計但無外部依賴
|
|
|
|
interface SimpleTestHeaderProps {
|
|
title: string
|
|
cefr: string
|
|
}
|
|
|
|
export function QuizHeader({ title, cefr }: SimpleTestHeaderProps) {
|
|
return (
|
|
<div className="flex justify-between items-start mb-6">
|
|
<h2 className="text-2xl font-bold text-gray-900">{title}</h2>
|
|
<span className="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">
|
|
{cefr}
|
|
</span>
|
|
</div>
|
|
)
|
|
} |