Day 53

in #code7 years ago

March 7th, 2018

<p dir="auto">Hello! At the React course by Wes Bos I learned about CSS in React.<br /> We have import the CSS directly in a component and that will go together with the component <p dir="auto">How to import it to the index.js <pre><code> import './css/style.css'; <p dir="auto">I also created app layout with components. It will hold all the children. <pre><code> div className="catch-of-the-day" div className="menu" Header / div Order / Inventory / div <p dir="auto">We can just add the tags with an "/" and react will import it automatically. Of course it has to be in the same file, path. <pre><code> class Order extends React.Component <p dir="auto">Example beginning for the "Order" component. <p dir="auto">Cheers!