14 lines
402 B
TypeScript
14 lines
402 B
TypeScript
import SuggestionsTable from "@/components/table/suggestions/suggestions-table";
|
|
|
|
export default function SuggestionsPage() {
|
|
return (
|
|
<div className="overflow-x-hidden overflow-y-scroll">
|
|
<div className="px-2 md:px-4 md:py-4 w-full">
|
|
<div className="bg-white shadow-lg dark:bg-[#18181b] rounded-xl p-3">
|
|
<SuggestionsTable />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|