_onChange = () => {
   this.setState({
     topics: TopicStore.getState().topics,
     newTopic: TopicStore.getState().newTopic
   });
 };
 constructor(props) {
   super(props);
   this.state = TopicStore.getState();
 }