import classnames from "classnames"; import React, { ReactChild } from "react"; interface ISidePanelContentProps { children: ReactChild; className?: string; } const baseClass = "side-panel-content"; /** * A component that controls the layout and styling of the side panel region of * the application. */ const SidePanelContent = ({ children, className, }: ISidePanelContentProps): JSX.Element => { const classes = classnames(baseClass, className); return