import React from 'react'; import classNames from 'classnames'; interface Props { /** * Corresponds to the theme setting in the app, and the class added to the root element. */ theme: 'light-theme' | 'dark-theme'; style: any; } /** * Provides the parent elements necessary to allow the main Signal Desktop stylesheet to * apply (with no changes) to messages in the Style Guide. */ export class LeftPaneContext extends React.Component { public render() { const { style, theme } = this.props; return (
{this.props.children}
); } }