ActivationStep3_old.js
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import React, { Component } from 'react';
import DocumentBox from '../components/DocumentBox'
import stepOne from '../../../img/stepthree.svg'
import greenCheck from '../../../img/outlineGreenCheck.svg'
import idIcon from '../../../img/id.svg'
import cfIcon from '../../../img/codice_fiscale_icon.svg'
import RightBox from '../components/RightBox'
import Sticky from 'react-sticky-el';
import * as SelectActionCreators from '../../actions/profilationSelect'
import {connect} from 'react-redux';
import { Motion, spring} from 'react-motion';
class ActivationStep3 extends Component{
render() {
return(
<div class="attivazione-step attivazione-step-3 closed">
<div class="attivazione-step-left-col attivazione-steps-inner">
<div class="attivazione-head">
<figure>
<img class="attivazione-head-checked" src="img/outlineGreenCheck.svg" alt="" />
<img class="attivazione-head-step-icon" src={stepOne} alt="" />
</figure>
<h2>Inserisci dati di pagamento e fatturazione</h2>
<h2 class="edit-step">Modifica</h2>
</div>
<div class="attivazione-step-body">
</div>
</div>
</div>
)
}
}
export default ActivationStep3;