mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-09 05:15:02 +00:00
10 lines
194 B
JavaScript
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>)
|
|
}
|
|
}
|