mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-16 12:33:18 +00:00
temporarily comment out select from pagination
This commit is contained in:
@@ -166,15 +166,17 @@ export type PerPageSelectProps = {
|
||||
onPerPageChange: (itemPerPage: number) => void
|
||||
}
|
||||
|
||||
export const PerPageSelect: FC<PerPageSelectProps> = ({
|
||||
perPage,
|
||||
perPageOptions,
|
||||
onPerPageChange,
|
||||
}) => {
|
||||
const selectOptions = perPageOptions.map(value => ({
|
||||
label: value,
|
||||
value,
|
||||
}))
|
||||
export const PerPageSelect: FC<PerPageSelectProps> = (
|
||||
{
|
||||
// perPage,
|
||||
// perPageOptions,
|
||||
// onPerPageChange,
|
||||
}
|
||||
) => {
|
||||
// const selectOptions = perPageOptions.map(value => ({
|
||||
// label: value,
|
||||
// value,
|
||||
// }))
|
||||
|
||||
return (
|
||||
<div className={classNames.selectBox}>
|
||||
|
||||
Reference in New Issue
Block a user