- [ ] Create rows on render, by default each row have 1 column - [ ] Add ability to drag-n-drop block to the left or to the right of other block, creating several columns layout - [ ] Add `id` to each block to saved data `blocks` property - [ ] Add `layout` property to saved data object. The `layout` should describe layout scheme of Blocks by their ids. For example ``` [---1---] [---2---] [ 3 ][ 4 ] [---5---] ``` should be described as ``` [1, 2, [3, 4], 5] ``` ```
idto each block to saved datablockspropertylayoutproperty to saved data object.The
layoutshould describe layout scheme of Blocks by their ids. For exampleshould be described as