mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-24 03:11:03 +00:00
23 lines
487 B
TypeScript
23 lines
487 B
TypeScript
import { GearIcon, ListUnorderedIcon } from "@primer/octicons-react";
|
|
import { DownloadIcon } from "./download-icon";
|
|
|
|
export const routes = [
|
|
{
|
|
path: "/",
|
|
nameKey: "catalogue",
|
|
render: () => <ListUnorderedIcon />,
|
|
},
|
|
{
|
|
path: "/downloads",
|
|
nameKey: "downloads",
|
|
render: (isDownloading: boolean) => (
|
|
<DownloadIcon isDownloading={isDownloading} />
|
|
),
|
|
},
|
|
{
|
|
path: "/settings",
|
|
nameKey: "settings",
|
|
render: () => <GearIcon />,
|
|
},
|
|
];
|