File "content.js"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/elementor/app/assets/js/layout/content.js
File size: 281 bytes
MIME-type: text/plain
Charset: utf-8

export default function Content( props ) {
	return (
		<main className={ `eps-app__content ${ props.className }` }>
			{ props.children }
		</main>
	);
}

Content.propTypes = {
	children: PropTypes.any,
	className: PropTypes.string,
};

Content.defaultProps = {
	className: '',
};