import classNames from "classnames";
import styles from "./List.module.css";
export const UnorderedList = ({ className, ...rest }: JSX.IntrinsicElements["ul"]) => (
);
export const OrderedList = ({ className, ...rest }: JSX.IntrinsicElements["ol"]) => (
);
// TODO: this is based on good faith that the children are all ``s...
export const ListItem = ({ className, ...rest }: JSX.IntrinsicElements["li"]) => (
);