Blame view

imports/ui/containers/app-navigation.js 287 Bytes
b9fec275b   tmcdeveloper   add fix for activ...
1
  import { composeWithTracker } from 'react-komposer';
2b1ad7917   tmcdeveloper   wip moving to Met...
2
  import { AppNavigation } from '../components/app-navigation';
f0c912bf1   tmcdeveloper   add method tests ...
3
4
  const composer = (props, onData) => {
    onData(null, { hasUser: Meteor.user() });
b9fec275b   tmcdeveloper   add fix for activ...
5
  };
f0c912bf1   tmcdeveloper   add method tests ...
6
  export default composeWithTracker(composer, {}, {}, { pure: false })(AppNavigation);