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

28 lines
564 B
JavaScript
Raw Normal View History

import React, { Component } from 'react'
import './Layout.css'
import './reset.css'
2016-12-16 17:28:42 +01:00
import {Link} from 'react-router'
export default class Layout extends Component {
render() {
return (<div>
2016-12-16 17:28:42 +01:00
<div id="header">
2017-01-26 17:16:15 +01:00
<div id="warning">
Attention ! Tout le contenu de ce site est hautement expérimental.
</div>
2016-12-16 17:28:42 +01:00
{
this.props.location.pathname != '/' &&
<Link to="/">
<img id="site-logo" src={require('../images/logo.png')} />
2016-12-16 17:28:42 +01:00
</Link>
}
</div>
2017-01-26 17:16:15 +01:00
<div id="content">
{this.props.children}
</div>
2017-01-26 17:16:15 +01:00
</div>
)
}
}