Sha256: 2206574b4591d2952e06cce0fbe991dc7d28afabecb0023e718c0755fa6d4ea7

Contents?: true

Size: 654 Bytes

Versions: 3

Compression:

Stored size: 654 Bytes

Contents

import React, {Component} from 'react'
import {Link} from 'react-router'
import AppBar from 'react-toolbox/lib/app_bar'
import FontIcon from 'react-toolbox/lib/font_icon'
import Button from 'react-toolbox/lib/button'
import style from './style'

class Header extends Component {
  render() {
    return (
      <AppBar className={style.appbar} flat>
        <Link to="/">
          <FontIcon value='home' />
        </Link>

        <h1 className={style.title}>
          Freres Memoire Example
        </h1>

        <Button className={style.button} floating accent
          icon="favorite_border" />
      </AppBar>
    )
  }
}

export default Header

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bouquet-0.2.2 store/private/static/app/components/layouts/header/index.js
bouquet-0.2.1 store/private/static/app/components/layouts/header/index.js
bouquet-0.2.0 store/private/static/app/components/layouts/header/index.js