From 3070e188582db54c67e454996cc9d770cc3515dd Mon Sep 17 00:00:00 2001 From: ditiqi Date: Sun, 23 Feb 2025 22:51:29 +0800 Subject: [PATCH] add --- .../CourseDetailDescription.tsx | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100755 apps/web/src/components/models/course/detail/CourseDetailDescription/CourseDetailDescription.tsx diff --git a/apps/web/src/components/models/course/detail/CourseDetailDescription/CourseDetailDescription.tsx b/apps/web/src/components/models/course/detail/CourseDetailDescription/CourseDetailDescription.tsx deleted file mode 100755 index a3c8114..0000000 --- a/apps/web/src/components/models/course/detail/CourseDetailDescription/CourseDetailDescription.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import { CheckCircleIcon } from "@heroicons/react/24/outline"; -import { Course } from "@nice/common"; -import { motion } from "framer-motion"; -import React from "react"; -import CourseDetailSkeleton from "../CourseDetailSkeleton"; -import CourseDetailNavBar from "./CourseDetailNavBar"; -interface CourseDetailProps { - course: Course; - isLoading: boolean; -} - -export const CourseDetailDescription: React.FC = ({ - course, - isLoading, -}) => { - return ( - <> - - -
- {isLoading || !course ? ( - - ) : ( - - )} -
- - ); -};