1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-23 13:34:19 +00:00
pds-2021-g2-nest/code/frontend/src/components/Layout.js
2021-04-23 02:18:06 +02:00

25 lines
821 B
JavaScript

import React from "react"
import Style from "./Layout.module.css"
import classNames from "classnames"
import Sidebar from "./Sidebar"
/**
* The base page layout, consisting of a {@link Sidebar} on the left and the page contents on the remaining space.
*
* @param children - The page contents.
* @param className - Additional class(es) to be added to the grid container.
* @param props - Additional props to be passed to the grid container.
* @returns {JSX.Element}
* @constructor
*/
export default function Layout({ children, className, ...props }) {
return (
<div className={classNames(Style.Layout, className)} {...props}>
<Sidebar className={Style.LayoutSidebar}/>
<div className={Style.LayoutContent}>
{children}
</div>
</div>
)
}