import { clsx } from "clsx"; import React from "react"; type Props = React.PropsWithChildren<{ className?: string; }>; const TestWrapper: React.FC = ({ className, children }) => (
{children}
); export default TestWrapper;