As a newcomer to React.js, I've observed that there are different ways to include stylesheets in a React Component. Some developers use the import method like this:
import '../../styles/video.scss
while others prefer to link the stylesheet directly in the index.html file:
<link rel="stylesheet" href="./css/styles.css">
I'm curious about when to use each method and which one is generally preferred when working with ReactJs?