import type { ReactNode } from 'react'; interface OgDataBoxProps { label: ReactNode; value: ReactNode; } export function OgDataBox({ label, value }: OgDataBoxProps) { return (
{label}
{value}
); }