import classNames from 'classnames'; import { IArticleOwnProps, } from './IArticleOwnProps'; import * as React from 'react'; export const Article = React.forwardRef(({ children, className, ...props }, ref) => (
{children}
));