smart_ims/src/production/pages/ProductionPage.tsx
2026-01-22 23:42:55 +09:00

13 lines
315 B
TypeScript

export function ProductionPage() {
return (
<div className="p-6">
<h1 className="text-2xl font-bold mb-4"> </h1>
<div className="bg-white rounded-lg shadow p-6">
<p> .</p>
</div>
</div>
);
}