import { ComponentPropsWithoutRef, forwardRef, Ref } from "react"; import classNames from "classnames"; import "./ListContainer.css" function _ListContainer( { className, children, ...otherProps }: ComponentPropsWithoutRef<"div">, ref: Ref, ) { return (
{children}
); } const ListContainer = forwardRef(_ListContainer); export default ListContainer;