UNPKG

@eightshift/frontend-libs

Version:

A collection of useful frontend utility modules. powered by Eightshift

16 lines (14 loc) 376 B
import React from 'react'; import { InspectorControls } from '@wordpress/block-editor'; import { ListsEditor } from './components/lists-editor'; import { ListsOptions } from './components/lists-options'; export const Lists = (props) => { return ( <> <InspectorControls> <ListsOptions {...props} /> </InspectorControls> <ListsEditor {...props} /> </> ); };