Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import clsx from 'clsx';
import PropTypes from 'prop-types';
import { Component } from 'react';
export default class extends Component {
static displayName = 'StatsModuleContentText';
static propTypes = {
className: PropTypes.string,
};
render() {
return (
<div className={ clsx( 'module-content-text', this.props.className ) }>
{ this.props.children }
</div>
);
}
}