1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-13 08:25:01 +00:00
mon-entreprise/containers/Layout.js
2016-11-15 18:27:43 +01:00

10 lines
171 B
JavaScript

import React, { Component } from 'react'
export default class Layout extends Component {
render() {
return (<div>
En-tête
{this.props.children}
</div>)
}
}