I just want to know if import of meteor sub-modules like below are still needed.
Can’t find a clear answer and it’s seems to me a little outdated.
Thanks.
import { Mongo } from 'meteor/mongo';
import { Meteor } from 'meteor/meteor';
import {Session} from 'meteor/session';
import {Template} from 'meteor/templating';
These are considered pseudo-globals, which are both global and importable.
It’s recommended that you use import statements, but it is ultimately your choice