'use client'; import React from 'react'; import { Tabs } from 'antd'; import type { TabsProps } from 'antd'; const PermissionsPage: React.FC = () => { const items: TabsProps['items'] = [ { key: '1', label: 'My Account', children: (

My Account Content

{/* Add your My Account content here */}
), }, { key: '2', label: 'Other Accounts', children: (

Other Accounts Content

{/* Add your Other Accounts content here */}
), }, ]; return (

Permissions

); }; export default PermissionsPage;