- We need to define a CSS style file, usually with the same name as our component, and put all the CSS code in there:

- Then we should import that file into our component:
src/components/ExpenseItem.js
- We should use
classNameinstead ofclass(which is a JavaScript reserved word) to use the classes we defined in the CSS file.
