import { Link } from "react-router-dom" import * as React from "react" import {TitleCard} from "./TitleCard" export function CardPage({title, hideTitle, children, parents} : { title: string, hideTitle?: boolean, children?: React.ReactNode, parents?: Array<{name: string, path: string}> }) { return (
  • Home
  • {parents?.map((b,i) =>
  • {b.name}
  • )}
  • {title}
{children}
) }