import AuthenticatedClientElement from '@components/Security/AuthenticatedClientElement'; import { getUriWithOrg } from '@services/config/config'; import Link from 'next/link'; import React from 'react' function MenuLinks(props: { orgslug: string }) { return (
) } const LinkItem = (props: any) => { const link = props.link; const orgslug = props.orgslug; return (
  • {props.type == 'courses' && <> Courses } {props.type == 'collections' && <> Collections } {props.type == 'trail' && <> Trail }
  • ) } export default MenuLinks