🏠 Root
/
home
/
a
/
r
/
t
/
artorgp
/
www
/
wp-content
/
plugins
/
visual-portfolio
/
gutenberg
/
components
/
notice
/
Editing: index.js
import './style.scss'; import classnames from 'classnames/dedupe'; import { Notice } from '@wordpress/components'; /** * Component Class * * @param props */ export default function NoticeComponent( props ) { const { className, ...allProps } = props; return ( <Notice className={ classnames( 'vpf-component-notice', className ) } { ...allProps } /> ); }
Save
Cancel