get_my/client/AdminMgmt/ProductMgmt/prodMgmt.js

17 lines
255 B
JavaScript
Raw Permalink Normal View History

import { Products } from '../../../imports/api/products.js';
Template.prodMgmt.onCreated(function() {
this.subscribe("myProducts");
});
Template.prodMgmt.onRendered(function() {
});
Template.prodMgmt.helpers({
});
Template.prodMgmt.events({
});