2017-12-07 14:19:51 +00:00
|
|
|
import React, { Component } from 'react'
|
2018-03-29 07:58:20 +00:00
|
|
|
import { Trans, translate } from 'react-i18next'
|
2018-06-06 08:22:46 +00:00
|
|
|
import './Explanation.css'
|
2018-06-15 18:09:43 +00:00
|
|
|
import ResultView from './ResultView/ResultView'
|
2018-06-18 08:49:02 +00:00
|
|
|
import Card from './ui/Card'
|
|
|
|
import withColours from './withColours'
|
2018-04-05 09:43:59 +00:00
|
|
|
|
2018-04-12 16:25:30 +00:00
|
|
|
@translate()
|
2018-04-05 09:43:59 +00:00
|
|
|
@withColours
|
2017-12-07 14:19:51 +00:00
|
|
|
export default class Explanation extends Component {
|
|
|
|
render() {
|
2017-12-19 16:29:21 +00:00
|
|
|
return (
|
2018-04-26 15:30:51 +00:00
|
|
|
<section id="explanation">
|
2018-06-18 08:49:02 +00:00
|
|
|
<Card>
|
|
|
|
<ResultView />
|
|
|
|
<div id="warning">
|
|
|
|
<p>
|
|
|
|
<i className="fa fa-info-circle" aria-hidden="true" />
|
|
|
|
<Trans i18nKey="disclaimer">
|
|
|
|
Le simulateur vous aide à comprendre votre bulletin de paie,
|
|
|
|
sans lui être opposable. Il ne prend pour l'instant pas en
|
|
|
|
compte les conventions et accords collectifs, ni la myriade
|
|
|
|
d'aides à explorer sur
|
|
|
|
</Trans>
|
|
|
|
<a href="https://www.aides-entreprises.fr">
|
|
|
|
aides-entreprises.fr
|
|
|
|
</a>.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</Card>
|
2018-04-26 15:30:51 +00:00
|
|
|
</section>
|
2017-12-19 16:29:21 +00:00
|
|
|
)
|
2017-12-07 18:19:57 +00:00
|
|
|
}
|
2017-12-07 14:19:51 +00:00
|
|
|
}
|