- Implemented CuttingIndex component for listing and managing cuttings. - Added routes for cutting management in web.php. - Created CuttingTest for testing cutting-related features including authorization, validation, and stock management. - Updated roles create and edit pages to include necessary imports. - Refactored settings and profile pages to streamline imports. - Enhanced permissions checks for cutting management actions.
18 lines
444 B
TypeScript
18 lines
444 B
TypeScript
import { Head } from '@inertiajs/react';
|
|
import AppearanceTabs from '@/components/appearance-tabs';
|
|
import { edit as editAppearance } from '@/routes/appearance';
|
|
|
|
export default function Appearance() {
|
|
return (
|
|
<>
|
|
<Head title="Tampilan" />
|
|
|
|
<h1 className="sr-only">Tampilan</h1>
|
|
|
|
<div className="space-y-6 px-4 md:px-6">
|
|
<AppearanceTabs />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|