📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 04:18:53
📂
/ (Root)
/
home
/
apkbfjox
/
rr3.pro
/
wp-content
/
themes
/
kadence
/
inc
/
dashboard
/
react
/
src
📍 /home/apkbfjox/rr3.pro/wp-content/themes/kadence/inc/dashboard/react/src
🔄 Refresh
✏️
Editing: notices.js
Writable
/** * WordPress dependencies */ const { useSelect, useDispatch } = wp.data; const { SnackbarList } = wp.components; export default function Notices() { const notices = useSelect( ( select ) => select( 'core/notices' ) .getNotices() .filter( ( notice ) => notice.type === 'snackbar' ), [] ); const { removeNotice } = useDispatch( 'core/notices' ); return ( <SnackbarList className="components-editor-notices__snackbar" notices={ notices } onRemove={ removeNotice } /> ); }
💾 Save Changes
❌ Cancel