35 lines
759 B
TypeScript
35 lines
759 B
TypeScript
import { Button } from '~/components/ui/button'
|
|
|
|
const DashboardSettingsLayout = () => (
|
|
<div>
|
|
{/* action sementara kategory */}
|
|
<div className="flex space-x-2">
|
|
<Button
|
|
as="a"
|
|
href={`/lg-admin/categories`}
|
|
className="text-md rounded-md"
|
|
size="sm"
|
|
>
|
|
List Kategory
|
|
</Button>
|
|
<Button
|
|
as="a"
|
|
href={`/lg-admin/category/create`}
|
|
className="text-md rounded-md"
|
|
size="sm"
|
|
>
|
|
Create Category
|
|
</Button>
|
|
<Button
|
|
as="a"
|
|
href={`/lg-admin/category/update/1`}
|
|
className="text-md rounded-md"
|
|
size="sm"
|
|
>
|
|
Update Category
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)
|
|
export default DashboardSettingsLayout
|