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