1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 05:15:02 +00:00
mon-entreprise/source/containers/Layout.js
2016-12-16 17:53:39 +01:00

23 lines
531 B
JavaScript

import React, { Component } from 'react'
import './Layout.css'
import {Link} from 'react-router'
export default class Layout extends Component {
render() {
return (<div>
<div id="header">
{
this.props.location.pathname != '/' &&
<Link to="/">
<img id="site-logo" src={require('../images/logo.png')} style={{width: '100px'}} />
</Link>
}
</div>
{this.props.children}
<div id="warning">
Attention ! Tout le contenu de ce site est hautement expérimental.
</div>
</div>
)
}
}