11 lines
390 B
TypeScript
11 lines
390 B
TypeScript
export default function PlaceholderPage({ title }: { title: string }) {
|
|
return (
|
|
<div className="p-6">
|
|
<h2 className="text-2xl font-semibold mb-4">{title}</h2>
|
|
<div className="bg-white p-6 rounded-lg" style={{ boxShadow: '0 1px 2px rgba(0, 0, 0, 0.05)' }}>
|
|
<p style={{ color: 'rgba(0, 0, 0, 0.45)' }}>此页面正在开发中...</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|