app-navigation.js 232 Bytes edit raw blame history 1 2 3 4 5 6 import { createContainer } from 'meteor/react-meteor-data'; import { AppNavigation } from '../components/app-navigation'; export default createContainer( ( { params } ) => { return { hasUser: Meteor.user() }; }, AppNavigation );