import { Link } from "react-router-dom" import * as React from "react" import {TitleCard} from "./TitleCard" export function CardPage({title,children, parent} : { title: string, children?: React.ReactNode, parent?: {name: string, url: string} }) { return (
  • Home
  • {parent &&
  • {parent?.name}
  • }
  • {title}
{children}
) }