import React from 'react'; import Button from '../Button'; import Typography from '../Typography'; import { Group } from '../../global/toolStyled'; type Props = { t: (key: string) => string; }; const PageSelector: React.FC = ({ t }: Props) => ( {t('pageRange')} ); export default PageSelector;