Skip to content

Commit

Permalink
chore: fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
drewstone committed Oct 30, 2024
1 parent 738bffc commit b24b6cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/NonuniformTableOfContentCards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ interface NonuniformTableOfContentCardsProps {
items: TOCItem[];
}

const NonuniformTableOfContentCards: React.FC<NonuniformTableOfContentCardsProps> = ({ items }) => {
const NonuniformTableOfContentCards: React.FC<
NonuniformTableOfContentCardsProps
> = ({ items }) => {
return (
<div className="columns-1 md:columns-2 lg:columns-3 gap-4 my-6">
{items.map((item, index) => (
Expand Down

0 comments on commit b24b6cd

Please sign in to comment.