1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 04:05:01 +00:00
mon-entreprise/source/components/Simu.js

32 lines
859 B
JavaScript
Raw Normal View History

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