import { Field, Input, Label, Select } from '@headlessui/react' import DT from 'datatables.net-dt' import DataTable from 'datatables.net-react' import { Link } from 'react-router' import { SearchIcon } from '~/components/icons/search' import { Button } from '~/components/ui/button' import { UiTable } from '~/components/ui/table' import { TitleDashboard } from '~/components/ui/title-dashboard' import { CONTENTS } from './data' export const ContentsPage = () => { DataTable.use(DT) const dataTable = CONTENTS const dataColumns = [ { title: 'No', data: 'id' }, { title: 'Tanggal Kontent', data: 'createdAt' }, { title: 'Nama Penulis', data: 'author' }, { title: 'Judul', data: 'title' }, { title: 'Kategori', data: 'category' }, { title: 'Tags', data: 'tags', render: (value: string) => { return value === 'Normal' ? `${value}` : `${value}` }, }, { title: 'Action', data: 'id', }, ] const dataSlot = { 6: (value: string | number) => { return ( ) }, } const dataOptions = { paging: true, searching: true, ordering: true, info: true, // scrollY: '50vh', } return (