import React, { Component } from 'react'
import { Trans, translate } from 'react-i18next'
import { findRuleByName } from 'Engine/rules'
import { reject, curry, pipe, equals, filter, contains, length } from 'ramda'
import { connect } from 'react-redux'
import { Link } from 'react-router-dom'
import './TargetSelection.css'
import BlueButton from './BlueButton'
export let salaries = ['salaire net', 'salaire brut', 'salaire total']
@connect(state => ({
flatRules: state.flatRules
}))
@translate()
export default class TargetSelection extends Component {
state = {
targets: []
}
render() {
let { targets } = this.state,
ready = targets.length > 0
return (
{this.renderOutputList()}