mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-10 23:41:57 +00:00
8c8cf180fa
* Add an updater in settings for decky-loader * add chmod * remove junk comments
26 lines
570 B
TypeScript
26 lines
570 B
TypeScript
import { SidebarNavigation } from 'decky-frontend-lib';
|
|
|
|
import GeneralSettings from './pages/general';
|
|
import PluginList from './pages/plugin_list';
|
|
|
|
export default function SettingsPage() {
|
|
return (
|
|
<SidebarNavigation
|
|
title="Decky Settings"
|
|
showTitle
|
|
pages={[
|
|
{
|
|
title: 'General',
|
|
content: <GeneralSettings />,
|
|
route: '/decky/settings/general',
|
|
},
|
|
{
|
|
title: 'Plugins',
|
|
content: <PluginList />,
|
|
route: '/decky/settings/plugins',
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
}
|