Fixed coding styles

This commit is contained in:
Alejandro Celaya 2022-05-09 19:47:41 +02:00
parent d582a0f9e5
commit 1f47658c3c

View file

@ -17,7 +17,9 @@ interface SimplePaginatorProps {
centered?: boolean; centered?: boolean;
} }
export const SimplePaginator: FC<SimplePaginatorProps> = ({ pagesCount, currentPage, setCurrentPage, centered = true }) => { export const SimplePaginator: FC<SimplePaginatorProps> = (
{ pagesCount, currentPage, setCurrentPage, centered = true },
) => {
if (pagesCount < 2) { if (pagesCount < 2) {
return null; return null;
} }