From a86cdf06964c55558d04ce4dfe78e389747cd2a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=A1=E8=8B=A5?= Date: Sun, 8 Mar 2026 10:34:08 +0800 Subject: [PATCH] =?UTF-8?q?sync:=20soul-admin=20=E9=A1=B5=E9=9D=A2=20|=20?= =?UTF-8?q?=E5=8E=9F=E5=9B=A0:=20=E5=89=8D=E7=AB=AF=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/pages/find-partner/tabs/MentorTab.tsx | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 soul-admin/src/pages/find-partner/tabs/MentorTab.tsx diff --git a/soul-admin/src/pages/find-partner/tabs/MentorTab.tsx b/soul-admin/src/pages/find-partner/tabs/MentorTab.tsx new file mode 100644 index 00000000..106ebbce --- /dev/null +++ b/soul-admin/src/pages/find-partner/tabs/MentorTab.tsx @@ -0,0 +1,28 @@ +import { useState } from 'react' +import { MentorBookingTab } from './MentorBookingTab' +import { MentorsPage } from '@/pages/mentors/MentorsPage' + +export function MentorTab() { + const [subTab, setSubTab] = useState<'booking' | 'manage'>('booking') + + return ( +
+
+ + +
+ {subTab === 'booking' && } + {subTab === 'manage' && ( +
+ +
+ )} +
+ ) +}