A toolbar that can be configuated with the command buttons and control its available and disabled states.
It must be used with the <Command />
component.
import GGEditor, { Flow, Command, Toolbar } from 'gg-editor';
<GGEditor>
<Flow />
<Toolbar>
<Command name="undo">Undo</Command>
<Command name="redo">Redo</Command>
</Toolbar>
</GGEditor>