score:1

Accepted answer

it's unlikely that npm start will generate <link> tags because react-scripts doesn't contain a mechanism to inject them and resolve packages to cdn urls automatically.

create-react-app configures webpack to support css loaders, the boilerplate already contains:

import './app.css';

any css can be imported like that:

import 'bootstrap/dist/css/bootstrap.css';

Related Query

More Query from same tag