UNPKG

@eightshift/frontend-libs

Version:

A collection of useful frontend utility modules. powered by Eightshift

17 lines (14 loc) 414 B
import React from 'react'; import { InspectorControls } from '@wordpress/block-editor'; import { SiteFooterEditor } from './components/site-footer-editor'; import { SiteFooterOptions } from './components/site-footer-options'; export const SiteFooter = (props) => { return ( <> <InspectorControls> <SiteFooterOptions {...props} /> </InspectorControls> <SiteFooterEditor {...props} /> </> ); };