import clsx from "clsx"; import styles from "./list.module.css"; type ULProps = React.HTMLAttributes; const UL: React.FC = ({ children, className, ...props }) => { return ( ); }; export default UL;