mon-entreprise/source/components/Simu.js

31 lines
807 B
JavaScript
Raw Normal View History

import React, { Component } from 'react'
2018-03-22 17:54:19 +00:00
import './Simu.css'
import TargetSelection from './TargetSelection'
import withColours from './withColours'
import Conversation from './conversation/Conversation'
2018-03-12 09:38:29 +00:00
import ProgressTip from './ProgressTip'
2018-03-15 14:51:39 +00:00
import FoldedSteps, { GoToAnswers } from './conversation/FoldedSteps'
import Explanation from './Explanation'
import GoToExplanations from './GoToExplanations'
@withColours
export default class extends Component {
render() {
2018-03-22 16:41:45 +00:00
let { colours } = this.props
return (
2018-04-05 17:53:01 +00:00
<div id="simu">
2018-03-14 16:49:27 +00:00
<FoldedSteps />
2018-03-15 14:51:39 +00:00
<div id="focusZone">
<GoToAnswers />
2018-03-22 16:41:45 +00:00
<TargetSelection colours={colours} />
<ProgressTip />
<Conversation textColourOnWhite={colours.textColourOnWhite} />
<GoToExplanations />
2018-03-15 14:51:39 +00:00
</div>
<Explanation />
2018-04-05 17:53:01 +00:00
</div>
)
}
}