Array destructing allows multiple blueprints to be included with minimal amount of syntax. ``` const [Mesh, HAM] = Frame(['Mesh', 'HAM']) ``` And multi-line ``` const [ Movie, Song, HTML, React, ] = Frame([ 'Movie', 'Song', 'HTML', 'React', ]) ``` Resources: - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment
Array destructing allows multiple blueprints to be included with minimal amount of syntax.
And multi-line
Resources: