import React, { Component } from "react"; import ExpandMoreIcon from '@material-ui/icons/ExpandMore'; import StatusAvatar from '../Avatar/Avatar'; export default class CallStart extends Component { constructor(props) { super(props); this.state = { }; } render() { const {brand,user} = this.props; return (
{brand}
); } }