import React from 'react'; import { Link, ChevronrightIcon, Popover } from '@plone/components'; interface Props { path: string; addableTypes: { '@id': string; id: string; title: string; }[]; } export const AddContentPopover = ({ path, addableTypes }: Props) => { // const page = addableTypes.find((type) => type.id === 'Document'); return ( ); };