Why React Components Must Return a Single Root Element
When you start building UIs with React, one of the first rules you encounter is: a component must return a single root element. But why is this necessary? Why can't we just return multiple tags side-b...