Added logic of creating block from scratch.

This commit is contained in:
2022-10-15 23:07:41 +03:00
parent 38629e7fbb
commit 0ace3de83e
4 changed files with 7872 additions and 214 deletions
@@ -103,7 +103,7 @@ function DataOptions(props = {}) {
dataOptions.sort((a, b) => b.widthDimension - a.widthDimension);
return dataOptions.find((item) => {
return item.widthDimension === 414;
return item.widthDimension; // first
});
}
}