|
1
|
import { InspectorAdvancedControls } from '@wordpress/block-editor'; |
|
2
|
import HTMLAnchor from '../../../components/html-anchor'; |
|
3
|
|
|
4
|
export default ( props ) => { |
|
5
|
return ( |
|
6
|
<InspectorAdvancedControls> |
|
7
|
<HTMLAnchor { ...props } /> |
|
8
|
</InspectorAdvancedControls> |
|
9
|
); |
|
10
|
}; |
|
11
|
|