import React from "react"; import type { Content, Data } from "../Components"; import { generateReactElements } from "../index"; type Props = { readonly className: string; readonly content: Content[]; readonly children: Data[]; readonly id: string; }; export const Container = ({ className, content, children, id }: Props) => { return (