1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 04:05:01 +00:00
mon-entreprise/source/components/Route404.js

14 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>