roshiro/openws_one

View on GitHub
webpack/ui/components/App.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react'
import NavBar from './NavBar'

const App = ({ children, routes }) => (
  <div>
    <NavBar />
    {children}
  </div>
)
App.contextTypes = {
  store: React.PropTypes.object
}
export default App