(
>
)
+PropertiesTable.IdRow = ({ id }: { id: string }) => (
+
+
+
+)
+
+PropertiesTable.DescriptionRow = ({ description }: { description: string }) => (
+
+
+
+)
+
+PropertiesTable.DateRow = ({
+ date,
+ label,
+}: {
+ date: Date
+ label: 'Created' | 'Updated' | 'Last Modified'
+}) => (
+
+
+
+)
+
interface PropertiesTableGroupProps {
children: ReactNode
className?: string