diff options
| author | Beebles <102569435+beebls@users.noreply.github.com> | 2024-08-07 16:57:21 -0600 |
|---|---|---|
| committer | Beebles <102569435+beebls@users.noreply.github.com> | 2025-08-01 06:45:40 -0600 |
| commit | 5a212e95fc2dfb6725b6996b4a72a2acd8a6b942 (patch) | |
| tree | f79e850d9cb8f3858c882db48c243093862dce13 /frontend/src/components/PluginView.tsx | |
| parent | 8f41eb93ef80bfbf3851ce8a82ea0f88c87e6c68 (diff) | |
| download | decky-loader-5a212e95fc2dfb6725b6996b4a72a2acd8a6b942.tar.gz decky-loader-5a212e95fc2dfb6725b6996b4a72a2acd8a6b942.zip | |
feat(motd): add motd component (untested)
Diffstat (limited to 'frontend/src/components/PluginView.tsx')
| -rw-r--r-- | frontend/src/components/PluginView.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/src/components/PluginView.tsx b/frontend/src/components/PluginView.tsx index 1d39972e..3f72486f 100644 --- a/frontend/src/components/PluginView.tsx +++ b/frontend/src/components/PluginView.tsx @@ -7,6 +7,7 @@ import { useDeckyState } from './DeckyState'; import NotificationBadge from './NotificationBadge'; import { useQuickAccessVisible } from './QuickAccessVisibleState'; import TitleView from './TitleView'; +import { MotdDisplay } from './MotdDisplay'; const PluginView: FC = () => { const { plugins, hiddenPlugins, updates, activePlugin, pluginOrder, setActivePlugin, closeActivePlugin } = @@ -36,6 +37,7 @@ const PluginView: FC = () => { return ( <> <TitleView /> + <MotdDisplay /> <div style={{ paddingTop: '16px', |
