Skip to content

Commit

Permalink
Settings tab that allows user to manipulate settings
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmonisit committed Jan 17, 2025
1 parent 64e5923 commit 6e5e537
Show file tree
Hide file tree
Showing 14 changed files with 247 additions and 607 deletions.
9 changes: 3 additions & 6 deletions app/features/rightPanel/RightPanel.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { useTransition } from 'react';
import useAuxiliaryStore from '@/lib/hooks/stores/useAuxiliaryStore';
import InfoDisplay from './courseInfoDisplay/InfoDisplay';
import InfoDisplay from './infoDisplay/InfoDisplay';
import FulfillmentTracker from './fulfillmentTracker/FulfillmentTracker';
import Settings from './settings/Settings';

type Tab = 'info' | 'tracker' | 'settings';

Expand Down Expand Up @@ -68,11 +69,7 @@ export default function RightPanel() {
>
{activeTab === 'info' && <InfoDisplay />}
{activeTab === 'tracker' && <FulfillmentTracker />}
{activeTab === 'settings' && (
<div className='p-4 text-gray-500'>
Settings panel coming soon...
</div>
)}
{activeTab === 'settings' && <Settings />}
</div>
</div>
</div>
Expand Down
Loading

0 comments on commit 6e5e537

Please sign in to comment.