Created
October 22, 2016 14:54
-
-
Save bnhansn/a7d18aa66c31a72a5c2b3e66700efe13 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
import React from 'react'; | |
import { css, StyleSheet } from 'aphrodite'; | |
const styles = StyleSheet.create({ | |
navbar: { | |
padding: '15px', | |
background: '#fff', | |
borderBottom: '1px solid rgb(240,240,240)', | |
}, | |
}); | |
type Props = { | |
room: { | |
name: string, | |
}, | |
} | |
const RoomNavbar = ({ room }: Props) => | |
<nav className={css(styles.navbar)}> | |
<div>#{room.name}</div> | |
</nav>; | |
export default RoomNavbar; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment