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