diff --git a/src/components/Topbar.tsx b/src/components/Topbar.tsx new file mode 100644 index 0000000..b750a57 --- /dev/null +++ b/src/components/Topbar.tsx @@ -0,0 +1,35 @@ +import { useState } from 'react'; + +const Topbar: React.FC = () => { + const [activeTab, setActiveTab] = useState('학습 관리'); + + return ( +
+ {/* 탭 메뉴 */} + +
+ ); +}; + +export default Topbar; \ No newline at end of file