div{
margin-top: 5px;
}
.item-component-span {
border-width: 1px;
border-style: solid;
cursor: pointer;
}
We need to import it in our component with ''import './ItemComponent.css';''.
**One thing to note that we need to use ''className'' instead of ''class'' in JSX.**.
Using ''class'' will not work.
import React from "react";
import './ItemComponent.css';
const ItemComponent = (prop) => {
return (
name: {prop.name}, price: ${prop.price}, key: {prop.index}
);
};
export default ItemComponent;