prescottprue/gitsearch

View on GitHub
src/components/Navbar/Navbar.js

Summary

Maintainability
A
0 mins
Test Coverage
import React, { Component } from 'react'
import styles from './Navbar.scss'
import { Link } from 'react-router'
import { AppBar } from 'material-ui'

export default class Navbar extends Component {
  render () {
    return (
      <AppBar
        title={
          <Link className='Navbar-Brand' to='/'>
            Github Search
          </Link>
        }
        className={styles.navbar}
        showMenuIconButton={false}
      />
    )
  }
}