import React, {Component} from 'react'; import {connect} from 'react-redux'; import {TabBar, Tab} from '../../coral-ui'; import Bio from '../components/Bio'; import CommentHistory from '../components/CommentHistory'; import SettingsHeader from '../components/SettingsHeader'; class SignInContainer extends Component { constructor (props) { super(props); this.state = { activeTab: 0 }; this.handleTabChange = this.handleTabChange.bind(this); } componentWillMount () { // Get Bio // Fetch commentHistory } handleTabChange(tab) { this.setState({ activeTab: tab }); } render() { //const {embedStream} = this.props; const {activeTab} = this.state; return (