Merge master into storybook-deploy

This commit is contained in:
github-actions[bot]
2023-10-09 11:26:35 +00:00
committed by GitHub

View File

@@ -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}>