import React from 'react'; type Props = { children: React.ReactNode; title: string; anchor: string; }; export default function ContextNavGroup({ title, children, anchor }: Props) { return (
  • {title}
  • ) }