File "main.js"

Full Path: /home/warrior1/public_html/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sidebar-layout/main.js
File size: 336 bytes
MIME-type: text/x-java
Charset: utf-8

/**
 * External dependencies
 */
import { forwardRef } from 'react';
import classNames from 'classnames';

const Main = forwardRef( ( { children, className = '' }, ref ) => {
	return (
		<div
			ref={ ref }
			className={ classNames( 'wc-block-components-main', className ) }
		>
			{ children }
		</div>
	);
} );

export default Main;