Sometimes, we want to import a CSS file in a React Component.
In this article, we’ll look at how to import a CSS file in a React Component.
How to import a CSS file in a React Component?
To import a CSS file in a React Component, we just import it like any other module.
For instance, we write
import React from 'react';
import './App.css';
to import the App.css file into our app to load the styles in the CSS file.
Conclusion
To import a CSS file in a React Component, we just import it like any other module.