import React from 'react'; import ListElement from "./ListElement"; import style from './ListContainer.module.css'; class ListContainer extends React.Component { constructor(props, context) { super(props, context); this.state = { elements: [], title: "Container of Elements" } this.handleclick = this.handleclick.bind(this); } render() { return (