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 { QuoteEditor } from './components/quote-editor'; import { QuoteOptions } from './components/quote-options'; export const Quote = (props) => { return ( <> <InspectorControls> <QuoteOptions {...props} /> </InspectorControls> <QuoteEditor {...props} /> </> ); };