UNPKG

@eightshift/frontend-libs

Version:

A collection of useful frontend utility modules. powered by Eightshift

17 lines (14 loc) 451 B
import React from 'react'; import { InspectorControls } from '@wordpress/block-editor'; import { TableOfContentsEditor } from './components/table-of-contents-editor'; import { TableOfContentsOptions } from './components/table-of-contents-options'; export const TableOfContents = (props) => { return ( <> <InspectorControls> <TableOfContentsOptions {...props} /> </InspectorControls> <TableOfContentsEditor {...props} /> </> ); };