import type { PropsWithChildren } from 'react'; import styles from './MetadataViewer.module.css'; interface Props { title: string; } function MetadataTable(props: PropsWithChildren) { const { title, children } = props; return ( {children}
{title}
); } export default MetadataTable;