mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-29 10:52:47 -04:00
Merge pull request #206 from spacedriveapp/eng-93-contacts-setting-screen-non-existsent
Fix contacts tab in settings.
This commit is contained in:
@@ -28,6 +28,7 @@ import { RedirectPage } from './screens/Redirect';
|
||||
import { SettingsScreen } from './screens/Settings';
|
||||
import { TagScreen } from './screens/Tag';
|
||||
import AppearanceSettings from './screens/settings/AppearanceSettings';
|
||||
import ContactsSettings from './screens/settings/ContactsSettings';
|
||||
import ExperimentalSettings from './screens/settings/ExperimentalSettings';
|
||||
import GeneralSettings from './screens/settings/GeneralSettings';
|
||||
import KeysSettings from './screens/settings/KeysSetting';
|
||||
@@ -103,6 +104,7 @@ function SettingsRoutes({ modal = false }) {
|
||||
<Route index element={<GeneralSettings />} />
|
||||
|
||||
<Route path="appearance" element={<AppearanceSettings />} />
|
||||
<Route path="contacts" element={<ContactsSettings />} />
|
||||
<Route path="experimental" element={<ExperimentalSettings />} />
|
||||
<Route path="general" element={<GeneralSettings />} />
|
||||
<Route path="keys" element={<KeysSettings />} />
|
||||
|
||||
12
packages/interface/src/screens/settings/ContactsSettings.tsx
Normal file
12
packages/interface/src/screens/settings/ContactsSettings.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
|
||||
import { SettingsContainer } from '../../components/settings/SettingsContainer';
|
||||
import { SettingsHeader } from '../../components/settings/SettingsHeader';
|
||||
|
||||
export default function ContactsSettings() {
|
||||
return (
|
||||
<SettingsContainer>
|
||||
<SettingsHeader title="Contacts" description="Manage your contacts in Spacedrive." />
|
||||
</SettingsContainer>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user