React habit: Avoid putting things that only need to render once in a component
React habit: Avoid putting things that only need to render once in a component.
Instead, I put things that only need to render once in root.render.
root.render (typically) only renders once.
