15 lines
518 B
JavaScript
15 lines
518 B
JavaScript
import React from 'react'
|
|
import {Link} from 'react-router-dom'
|
|
|
|
export default () =>
|
|
<div style={{color: '#333350', margin: '15% auto', width: '15em', textAlign: 'center'}}>
|
|
<h2>
|
|
On peut facilement se perdre dans la législation...
|
|
</h2>
|
|
<Link to="/">
|
|
{/* TODO: credits for the image to add: https://thenounproject.com/term/treasure-map/96666/ */}
|
|
<img style={{margin: '3%'}} width="250px" src={require('../images/map-directions.png')} />
|
|
Revenir en lieu sûr
|
|
</Link>
|
|
</div>
|