Skip to content

Commit

Permalink
๐Ÿท๏ธ chore: type react fc -> children
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethen1264 committed Nov 17, 2024
1 parent 7e0c8ef commit 1488b61
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/shared/ui/Table/TableFooter/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,7 @@ type TableFooterProps = VariantProps<typeof tableFooterStyles> & {
num?: number;
};

const TableFooter: React.FC<TableFooterProps> = ({
type = 'default',
num = 100,
}) => {
const TableFooter = ({ type = 'default', num = 100 }: TableFooterProps) => {
return (
<div className={tableFooterStyles({ type })}>
<div className="flex gap-6">
Expand Down

0 comments on commit 1488b61

Please sign in to comment.