mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 12:19:10 +00:00
14 lines
264 B
JavaScript
14 lines
264 B
JavaScript
// @flow
|
|
import * as React from 'react'
|
|
|
|
export type CommonProps = {
|
|
children: React.Element<any>
|
|
}
|
|
|
|
const HeaderBarCommon: React.StatelessFunctionalComponent<CommonProps> = ({ children }) => (
|
|
<div>
|
|
{ children }
|
|
</div>
|
|
)
|
|
|
|
export default HeaderBarCommon
|