While working with Blazor, I discovered that since it doesn't support CSS isolation, the best way to isolate your CSS is by creating a separate CSS file for each component you create and then importing it into the component's .razor
file. However, I am curious to know if it is appropriate to include a
<link rel="stylesheet" href="css/..." />
tag at the top of my Blazor component file?