UNPKG

@wordpress/block-editor

Version:
10 lines (7 loc) 277 B
// List view tab restricts the blocks that may render to it via the // allowlist below. const allowlist = [ 'core/navigation' ]; export const useIsListViewTabDisabled = ( blockName ) => { return ! allowlist.includes( blockName ); }; export default useIsListViewTabDisabled;