import React from 'react'; import cn from 'classnames'; import stl from './content.module.css'; function Content({ children, className, ...props }: { children?: React.ReactNode; className?: string }) { return (
{ children }
); } Content.displayName = 'Content'; export default Content;