Reputation: 1
React component CSS file CSS code does not work. Component file CSS has been imported।
import React from 'react';
import { Carousel } from 'react-bootstrap';
import './Banner';
Upvotes: 0
Views: 50
Reputation: 11
Instead of using import './Banner';
use this import './Banner.css';
.
Or
In General,
use import './styleFileName.css';
to import any CSS file.
Upvotes: 1