mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 03:24:16 +00:00
22 lines
666 B
JavaScript
Executable File
22 lines
666 B
JavaScript
Executable File
import GeneralSettings from "./general"
|
|
import ProfileSettings from "./profile"
|
|
import SecuritySettings from "./security"
|
|
import NotificationsSettings from "./notifications"
|
|
import ApparenceSettings from "./apparence"
|
|
import ExtensionsSettings from "./extensions"
|
|
import SyncSettings from "./sync"
|
|
import PlayerSettings from "./player"
|
|
|
|
import AboutPage from "./about"
|
|
|
|
export default {
|
|
general: GeneralSettings,
|
|
profile: ProfileSettings,
|
|
apparence: ApparenceSettings,
|
|
player: PlayerSettings,
|
|
security: SecuritySettings,
|
|
notifications: NotificationsSettings,
|
|
extensions: ExtensionsSettings,
|
|
sync: SyncSettings,
|
|
about: AboutPage,
|
|
} |