10 lines
269 B
TypeScript
10 lines
269 B
TypeScript
"use client";
|
|
|
|
export default function ExercisePage() {
|
|
return (
|
|
<div className="space-y-4">
|
|
<h1 className="text-xl font-bold text-gray-800">题库练习</h1>
|
|
<p className="text-sm text-gray-500">章节练习和模拟考试功能</p>
|
|
</div>
|
|
);
|
|
} |