import React from "react"; import style from "./SideBar.module.css" import StaticInfos from "../../GlobalInfos"; class SideBar extends React.Component { render() { const themeStyle = StaticInfos.getThemeStyle(); return (
{this.props.children}
); } } export class SideBarTitle extends React.Component { render() { const themeStyle = StaticInfos.getThemeStyle(); return (
{this.props.children}
); } } export class SideBarItem extends React.Component { render() { const themeStyle = StaticInfos.getThemeStyle(); return (
{this.props.children}
); } } export default SideBar;