Skip to content

Commit

Permalink
Fix missing react import.
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanCQ committed Dec 17, 2023
1 parent 3ff2e26 commit 3e22aea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/ui/skeleton.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { cn } from "src/utils"

import React from "react";
import { cn } from "src/utils";
function Skeleton({
className,
...props
Expand All @@ -9,7 +9,7 @@ function Skeleton({
className={cn("animate-pulse rounded-md bg-primary/10", className)}
{...props}
/>
)
);
}

export { Skeleton }
export { Skeleton };

0 comments on commit 3e22aea

Please sign in to comment.