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