import { IconPatch } from "components/buttons/IconPatch"; import { Icons } from "components/Icon"; import { DISCORD_LINK, GITHUB_LINK } from "mw_constants"; import { ReactNode } from "react"; import { Link } from "react-router-dom" import { BrandPill } from "./BrandPill"; export interface NavigationProps { children?: ReactNode; } export function Navigation(props: NavigationProps) { return (
{props.children}
) }