Gutenberg blocks error: Each child in a list should have a unique “key” prop

You need to provide a key for the section element in your edit() function (which returns an array of elements):

edit() {
    return([
        <section key="my-key">
            <div className="container">
                <h2>Title here</h2>
            </div>
        </section>
    ])
},