Blame view
imports/client/views/app/module/navigation/index.js
318 Bytes
b9fec275b
|
1 |
import { composeWithTracker } from 'react-komposer'; |
cac7cbc73
|
2 |
import { Meteor } from 'meteor/meteor'; |
c42d4eeac
|
3 |
import AppNavigation from '../components/AppNavigation.js'; |
2b1ad7917
|
4 |
|
3540345c5
|
5 |
const composer = (props, onData) => onData(null, { hasUser: Meteor.user() }); |
b9fec275b
|
6 |
|
f0c912bf1
|
7 |
export default composeWithTracker(composer, {}, {}, { pure: false })(AppNavigation); |