import { Component } from 'react'; import { observer } from 'mobx-react'; import classnames from 'classnames'; import Appear from './effects/Appear'; interface IProps { className?: string; text?: string; } // TODO: [TS DEBT] Should this file be converted into the coding style similar to './toggle/index.tsx'? @observer class StatusBarTargetUrl extends Component { render() { const { className = '', text = '' } = this.props; return (
{text}
); } } export default StatusBarTargetUrl;