Javascript – How do you insert/append a react Component on mount
Like the title says, on mount I want to insert/append a Component, either as a child or sibling. Things I've found online that haven't worked: ReactDOM.render() This replaces the whole node and its children with the <Component />. .insertAdjacentElement() I…