summaryrefslogtreecommitdiff
path: root/frontend/src/components/PluginView.tsx
diff options
context:
space:
mode:
authorBeebles <102569435+beebls@users.noreply.github.com>2024-08-07 16:57:21 -0600
committerBeebles <102569435+beebls@users.noreply.github.com>2024-09-13 17:22:14 -0600
commit1f9359988b4a0e2d48c54768276258baf77bceb0 (patch)
tree3fcdfe61014c963f5a5cea2850555805eb6336f2 /frontend/src/components/PluginView.tsx
parent1284075d024615dc3f10974acf7e1a6c59a5f909 (diff)
downloaddecky-loader-1f9359988b4a0e2d48c54768276258baf77bceb0.tar.gz
decky-loader-1f9359988b4a0e2d48c54768276258baf77bceb0.zip
feat(motd): add motd component (untested)
Diffstat (limited to 'frontend/src/components/PluginView.tsx')
-rw-r--r--frontend/src/components/PluginView.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/src/components/PluginView.tsx b/frontend/src/components/PluginView.tsx
index 19afbca5..682abfc1 100644
--- a/frontend/src/components/PluginView.tsx
+++ b/frontend/src/components/PluginView.tsx
@@ -8,6 +8,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 { hiddenPlugins } = useDeckyState();
@@ -37,6 +38,7 @@ const PluginView: FC = () => {
return (
<>
<TitleView />
+ <MotdDisplay />
<div
style={{
paddingTop: '16px',