11 lines
256 B
TypeScript
11 lines
256 B
TypeScript
|
import InventoryManagement from '@/components/InventoryManagement';
|
||
|
|
||
|
export default function Home() {
|
||
|
return (
|
||
|
<main className="min-h-screen bg-gradient-to-br from-blue-100 to-indigo-100 p-4 sm:p-8">
|
||
|
<InventoryManagement />
|
||
|
</main>
|
||
|
);
|
||
|
}
|
||
|
|