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

10 lines
194 B
JavaScript

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