import {
Container,
Header,
Footer,
Content,
Sidebar,
Sidenav,
Nav,
} from "rsuite";
import "rsuite/dist/rsuite.min.css";
export default function App() {
return (
<center>
<div>
<h2>GeeksforGeeks</h2>
<h4 style={{ color: "green" }}>
React Suite Sidebar Layout
</h4>
<div style={{ marginTop: 20, width: 800 }}>
<Container>
<Sidebar
style={{
backgroundColor: "#172F50",
padding: 30
}}
>
<h4 style={{ color: "white" }}>
GeeksforGeeks
</h4>
<ul
style={{
listStyleType: "none",
padding: 10,
fontSize: 20,
color: "white",
}}
>
<li>Tutorials</li>
<li>Courses</li>
<li>Jobs</li>
<li>Practice</li>
<li>Contact</li>
</ul>
</Sidebar>
<Container>
<Header
style={{
backgroundColor: "green",
padding: 20,
color: "white",
}}
>
<h2>GeeksforGeeks</h2>
</Header>
<Content
style={{
backgroundColor: "lightgreen",
padding: 40,
color: "white",
}}
>
GeeksforGeeks is a portal for geeks.
It is a collection of well-written,
well-thought, and well-responsive articles.
</Content>
<Footer
style={{
backgroundColor: "lightgray",
padding: 20,
color: "white",
}}
>
© GeeksforGeeks.org
</Footer>
</Container>
</Container>
</div>
</div>
</center>
);
}