import { createElement } from '@wordpress/element'
import { expandOptionsFor } from './BuilderRoot'
const Bar = ({ bar }) => {
return (
Top Row
)
}
const PlacementsBuilder = () => {
return (
{['top-bar', 'middle-bar', 'bottom-bar'].map(bar => (
))}
)
}
export default PlacementsBuilder