Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| da389c937e | |||
| 804f76100a |
@@ -0,0 +1,43 @@
|
|||||||
|
import React from "react";
|
||||||
|
import Icons from "../../Helpers/Icons";
|
||||||
|
|
||||||
|
export default function Preferences() {
|
||||||
|
return (
|
||||||
|
<div className="login-activity-tab w-full">
|
||||||
|
<div className="relative w-full overflow-x-auto sm:rounded-lg">
|
||||||
|
<table className="w-full text-sm text-left text-gray-500 dark:text-gray-400">
|
||||||
|
{/* <thead>
|
||||||
|
<tr className="text-base text-thin-light-gray border-b dark:border-[#5356fb29] default-border-b ">
|
||||||
|
<td className="py-4 text-center">Channel</td>
|
||||||
|
<td className="py-4 text-center">Date</td>
|
||||||
|
<td className="py-4 text-center">Location</td>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr className="bg-white dark:bg-dark-white border-b dark:border-[#5356fb29] hover:bg-gray-50">
|
||||||
|
<td className="text-center py-4">
|
||||||
|
<div className="flex items-center justify-center">
|
||||||
|
<span className="text-base text-dark-gray dark:text-white font-medium whitespace-nowrap px-2">
|
||||||
|
Desktop
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td className="text-center py-4">
|
||||||
|
<div className="flex space-x-1 items-center justify-center">
|
||||||
|
<span className="text-base text-dark-gray dark:text-white font-medium whitespace-nowrap px-2">
|
||||||
|
10-10-2035
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td className="text-center py-4">
|
||||||
|
<span className="text-base text-dark-gray dark:text-white whitespace-nowrap px-2">
|
||||||
|
10.0.0.1000
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody> */}
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -7,6 +7,7 @@ import PersonalInfoTab from "./PersonalInfoTab";
|
|||||||
import PrivacyPolicyTab from "./PrivacyPolicyTab";
|
import PrivacyPolicyTab from "./PrivacyPolicyTab";
|
||||||
import RecentActivitiesTab from "./RecentActivitiesTab";
|
import RecentActivitiesTab from "./RecentActivitiesTab";
|
||||||
import TermsConditionTab from "./TermsConditionTab";
|
import TermsConditionTab from "./TermsConditionTab";
|
||||||
|
import Preferences from './Preferences'
|
||||||
|
|
||||||
export {
|
export {
|
||||||
ChangePasswordTab,
|
ChangePasswordTab,
|
||||||
@@ -18,4 +19,5 @@ export {
|
|||||||
PrivacyPolicyTab,
|
PrivacyPolicyTab,
|
||||||
RecentActivitiesTab,
|
RecentActivitiesTab,
|
||||||
TermsConditionTab,
|
TermsConditionTab,
|
||||||
|
Preferences
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ import {
|
|||||||
PrivacyPolicyTab,
|
PrivacyPolicyTab,
|
||||||
RecentActivitiesTab,
|
RecentActivitiesTab,
|
||||||
TermsConditionTab,
|
TermsConditionTab,
|
||||||
|
Preferences,
|
||||||
} from "./Tabs";
|
} from "./Tabs";
|
||||||
import RecipientAccountTab from "./Tabs/RecipientAccountTab";
|
import RecipientAccountTab from "./Tabs/RecipientAccountTab";
|
||||||
|
|
||||||
@@ -166,7 +167,7 @@ export default function Settings({ faq }) {
|
|||||||
<NotificationSettingTab />
|
<NotificationSettingTab />
|
||||||
</div>
|
</div>
|
||||||
),
|
),
|
||||||
preferences: <LoginActivityTab />,
|
preferences: <Preferences />,
|
||||||
recent_activities: <RecentActivitiesTab />,
|
recent_activities: <RecentActivitiesTab />,
|
||||||
password: <ChangePasswordTab />,
|
password: <ChangePasswordTab />,
|
||||||
faq: <FaqTab datas={faq} />,
|
faq: <FaqTab datas={faq} />,
|
||||||
|
|||||||
Reference in New Issue
Block a user