Add About page to command pallete
This commit is contained in:
parent
b2b1a83e3e
commit
8e31c47bc7
|
@ -384,6 +384,13 @@ const CommandPalette = (props: CommandPaletteProps) => {
|
||||||
icon: <LogoutOutlined />,
|
icon: <LogoutOutlined />,
|
||||||
perform: logoutAction,
|
perform: logoutAction,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'AboutAction',
|
||||||
|
name: 'About',
|
||||||
|
subtitle: 'About this app / sponsor.',
|
||||||
|
icon: <InfoCircleOutlined />,
|
||||||
|
perform: () => navigate(Routes.ABOUT),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in New Issue