/** * 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;