Skip to content

Commit

Permalink
code quality
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekwuno committed Jan 6, 2025
1 parent d4da348 commit beee56d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/components/shared/Table.astro
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
---
interface Props {
class?: string;
headClass?: string;
bodyClass?: string;
rowClass?: string;
cellClass?: string;
class?: string;
headClass?: string;
bodyClass?: string;
rowClass?: string;
cellClass?: string;
}
const {
class: className = "",
headClass = "",
bodyClass = "",
rowClass = "",
cellClass = "",
...rest
class: className = '',
headClass = '',
bodyClass = '',
rowClass = '',
cellClass = '',
...rest
} = Astro.props;
---

Expand Down

0 comments on commit beee56d

Please sign in to comment.