Apologies for leaving this unanswered for so long.
Thinking of CRA is a beginner's tool is probably helpful, it sweeps a lot of the set-up away so you can just start learning React. This is helpful. Unfortunately, CRA also gets used as the basis for many professional projects, which is less helpful.
You're correct that the React library itself is what's needed to actually get the functionality of React. However, it's not (necessarily) sufficient by itself. Most React code involves writing JSX, code which looks like HTML but isn't. JSX cannot be run by browsers so a tool like webpack is required to transpile that code into vanilla JavaScript that the browser can run.