From 3e22aeae8cfbd061bf90d8ba859695d354a5b0c5 Mon Sep 17 00:00:00 2001 From: aidanCQ Date: Sun, 17 Dec 2023 20:18:13 +0000 Subject: [PATCH] Fix missing react import. --- src/components/ui/skeleton.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/ui/skeleton.tsx b/src/components/ui/skeleton.tsx index 36eb64e..a479af8 100644 --- a/src/components/ui/skeleton.tsx +++ b/src/components/ui/skeleton.tsx @@ -1,5 +1,5 @@ -import { cn } from "src/utils" - +import React from "react"; +import { cn } from "src/utils"; function Skeleton({ className, ...props @@ -9,7 +9,7 @@ function Skeleton({ className={cn("animate-pulse rounded-md bg-primary/10", className)} {...props} /> - ) + ); } -export { Skeleton } +export { Skeleton };