Wrap
Creates a simple wrapper that wraps other elements.
let elements = [
{
type: "wrap"
}
];
This operation creates Wrapper
element.
new Wrapper()
.set({})
.add([
new Text("First").set({}),
new Text("Second").set({}),
new Text("Third").set({})
]).render("#mount");