function inferSection()

in beta/src/components/Layout/Nav/MobileNav.tsx [14:22]


function inferSection(pathname: string): 'learn' | 'reference' | 'home' {
  if (pathname.startsWith('/learn')) {
    return 'learn';
  } else if (pathname.startsWith('/reference')) {
    return 'reference';
  } else {
    return 'home';
  }
}