import React, { Component } from 'react'; import QuestionItem from './IntentItem'; import '../css/Intent.css' class IntentList extends Component { constructor (props){ super(props); this.state = {intents: props.allIntents, selected:0, onIntentClick:props.onIntentClick}; } componentWillReceiveProps(props){ this.setState({intents: props.allIntents}); } render() { return (
Intents