feat: Minor adjustment

- Optimize gambar dengan webp
- Perlebar tampilan utama di layar besar
- Fix DataTable props
This commit is contained in:
Hafid Nur
2025-03-28 21:46:10 +07:00
parent 88c71ccdfa
commit f93d741cef
9 changed files with 59 additions and 23 deletions
@@ -5,6 +5,7 @@ import {
getPaginationRowModel,
flexRender,
ColumnDef,
Table,
} from '@tanstack/react-table';
import { Pagination } from '../../molecules';
@@ -13,6 +14,7 @@ import React from 'react';
interface DataTableProps<T> {
data: T[];
columns: ColumnDef<T>[];
table: Table<T>;
pageSize?: number;
}