mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
15 lines
205 B
JavaScript
15 lines
205 B
JavaScript
|
|
import React from 'react'
|
|
|
|
|
|
export default class PageHeader extends React.Component {
|
|
render() {
|
|
return (
|
|
<div className="page-header">
|
|
{this.props.children}
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|