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