You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
523 B
17 lines
523 B
import React, {Component} from 'react'; |
|
import './Sidebar.css'; |
|
|
|
export function Sidebar(props) { |
|
return ( |
|
<div className={props.content ? 'sidebar-on' : ''}> |
|
<div className="sidebar-shadow" onClick={props.do_close} /> |
|
<div className="sidebar"> |
|
<p className="sidebar-title"> |
|
<a onClick={props.do_close}> × </a> |
|
{props.title} |
|
</p> |
|
{props.content} |
|
</div> |
|
</div> |
|
); |
|
} |