import { UnorderedList, OrderedList, ListItem } from "@chakra-ui/react"; import type { FunctionComponent } from "react"; export const Ul: FunctionComponent = ({ children }) => ( {children} ); export const Ol: FunctionComponent = ({ children }) => ( {children} ); export const Li: FunctionComponent = ({ children }) => ( {children} );