Skip to content

Commit

Permalink
feat(setting): add wip for wip tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
jsun969 committed Feb 17, 2024
1 parent 08ed60b commit fa0fd43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/(account)/settings/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ export type SettingData = { membershipPayment: MembershipPayment };
export type SettingTabProps = { settingData: SettingData };
type SettingTabComponent = ({ settingData }: SettingTabProps) => React.ReactNode;
const SETTING_TABS = {
Account: () => <></>,
'Personal Info': () => <></>,
Account: () => <div>WIP</div>,
'Personal Info': () => <div>WIP</div>,
Membership: MembershipSettings,
Notifications: () => <></>,
Notifications: () => <div>WIP</div>,
} as const satisfies Record<TabNames, SettingTabComponent>;

export default function Settings({ settingData }: { settingData: SettingData }) {
Expand Down

0 comments on commit fa0fd43

Please sign in to comment.