Style rules seem to not be applying to React components other than App.js
I am trying to setup a simple event list app. Using the default environment created using npx create-react-app
, I setup my App.js
to be a component that holds a <table>
and its <thead>
, while the <tbody>
tag is handled by another component called <EventListing />
.