File "content-layout.js"

Full Path: /home/warrior1/public_html/wp-content/plugins/elementor/app/modules/import-export/assets/js/shared/content-layout/content-layout.js
File size: 331 bytes
MIME-type: text/x-java
Charset: utf-8

import './content-layout.scss';

export default function ContentLayout( props ) {
	return (
		<div className="e-app-import-export-content-layout">
			<div className="e-app-import-export-content-layout__container">
				{ props.children }
			</div>
		</div>
	);
}

ContentLayout.propTypes = {
	children: PropTypes.any.isRequired,
};