Skip to content

Commit

Permalink
changed react.fc to FC
Browse files Browse the repository at this point in the history
  • Loading branch information
chopachop committed Jul 23, 2024
1 parent 7542f30 commit 6744ddb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dashboard/src/components/TablePaginationSection.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import KeyboardArrowLeftIcon from "@mui/icons-material/KeyboardArrowLeft";
import KeyboardArrowRightIcon from "@mui/icons-material/KeyboardArrowRight";
import { Box, Button, IconButton, iconButtonClasses } from "@mui/joy";
import { FC } from "react";

interface TablePaginationSectionProps {
currentPage: number;
pageCount: number;
onPageChange: (page: number) => void;
}

export const TablePaginationSection: React.FC<TablePaginationSectionProps> = ({
export const TablePaginationSection: FC<TablePaginationSectionProps> = ({
currentPage,
pageCount,
onPageChange,
Expand Down

0 comments on commit 6744ddb

Please sign in to comment.