diff --git a/app/pages/dashboard-contents/index.tsx b/app/pages/dashboard-contents/index.tsx
index a817783..31cfe69 100644
--- a/app/pages/dashboard-contents/index.tsx
+++ b/app/pages/dashboard-contents/index.tsx
@@ -3,6 +3,7 @@ import DT from 'datatables.net-dt'
import DataTable from 'datatables.net-react'
import { SearchIcon } from '~/components/icons/search'
+import { Button } from '~/components/ui/button'
import { TitleDashboard } from '~/components/ui/title-dashboard'
import { CONTENTS } from './data'
@@ -27,9 +28,6 @@ export const ContentsPage = () => {
{
title: 'Action',
data: 'id',
- render: () => {
- return ''
- },
},
]
@@ -70,6 +68,18 @@ export const ContentsPage = () => {
className="cell-border"
data={CONTENTS}
columns={columns}
+ slots={{
+ 6: (value: string | number) => {
+ return (
+
+ )
+ },
+ }}
options={{
paging: true,
searching: true,