1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-23 05:24:18 +00:00
pds-2021-g2-nest/code/frontend/src/components/Sidebar.js

13 lines
307 B
JavaScript
Raw Normal View History

2021-04-21 13:08:54 +00:00
import React from "react"
import Style from "./Sidebar.module.css"
import classNames from "classnames"
export default function Sidebar({ children, className, ...props }) {
return (
<div className={classNames(Style.Sidebar, className)} {...props}>
{children}
</div>
)
}