mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 12:19:10 +00:00
14 lines
295 B
JavaScript
14 lines
295 B
JavaScript
// @flow
|
|
import * as React from 'react'
|
|
import HeaderBarCommon, { Logotype } from './common'
|
|
|
|
const HeaderBarUnauth: React.StatelessFunctionalComponent<{}> = () => (
|
|
<HeaderBarCommon>
|
|
<>
|
|
<Logotype />
|
|
Hey stranger.
|
|
</>
|
|
</HeaderBarCommon>
|
|
)
|
|
|
|
export default HeaderBarUnauth
|