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