import React from 'react'; import classnames from 'classnames'; import styles from './styles.module.scss'; import colors from '../../variables/colors.json'; const AppSidebar: React.FC<{ visible: boolean, backgroundColor?: React.CSSProperties['backgroundColor'] width?: React.CSSProperties['width'] }> = ({ visible, backgroundColor = colors.white, width = 415, children, }) => { return
{children}
; } AppSidebar.displayName = 'AppSidebar'; export default AppSidebar;