mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-13 08:25:01 +00:00
10 lines
171 B
JavaScript
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>)
|
|
}
|
|
}
|