...

/

Resolving the Initial App Layout: The Sidebar

Resolving the Initial App Layout: The Sidebar

The first component of our app is the Sidebar. We'll make a basic rendition of it in this lesson.

We'll cover the following...

Now, we can comfortably get to building the Sidebar.

Let’s keep it simple for now.

Sidebar.js:

Press + to interact
import React from "react";
import "./Sidebar.css";
const Sidebar = () => {
return <aside className="Sidebar">Sidebar</aside>;
};
export default Sidebar;

All ...