From 9608610b0fef717c8f2d87ab518a077f4e0763cb Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sun, 9 Nov 2025 20:33:00 -0800 Subject: admin: implement user deletion --- frontend/src/components/CollapsibleSection.tsx | 40 -------------------------- 1 file changed, 40 deletions(-) delete mode 100644 frontend/src/components/CollapsibleSection.tsx (limited to 'frontend/src/components/CollapsibleSection.tsx') diff --git a/frontend/src/components/CollapsibleSection.tsx b/frontend/src/components/CollapsibleSection.tsx deleted file mode 100644 index 08df24f..0000000 --- a/frontend/src/components/CollapsibleSection.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import { ReactNode } from 'react'; - -interface CollapsibleSectionProps { - title: string; - isOpen: boolean; - onToggle: () => void; - children: ReactNode; -} - -const CollapsibleSection = ({ title, isOpen, onToggle, children }: CollapsibleSectionProps) => { - return ( -
-
- - {isOpen && ( -
- {children} -
- )} -
-
- ); -}; - -export default CollapsibleSection; \ No newline at end of file -- cgit v1.2.3