2024-06-29 19:39:25 +00:00
|
|
|
import { DataTableProvider } from "@/lib/hooks";
|
|
|
|
|
import { Trans } from "react-i18next";
|
|
|
|
|
import { QuotesDataTable } from "./components";
|
2024-06-09 20:22:22 +00:00
|
|
|
|
2024-06-29 19:39:25 +00:00
|
|
|
export const QuotesList = () => (
|
|
|
|
|
<DataTableProvider>
|
|
|
|
|
<div className='flex items-center'>
|
|
|
|
|
<h1 className='text-lg font-semibold md:text-2xl'>
|
|
|
|
|
<Trans i18nKey='quotes.title' />
|
|
|
|
|
</h1>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<QuotesDataTable />
|
|
|
|
|
</DataTableProvider>
|
|
|
|
|
);
|