open-health/client/General/Workouts/WorkoutLogs/workoutLog.js

18 lines
336 B
JavaScript
Raw Normal View History

2026-02-03 16:03:34 -06:00
import { FlowRouter } from 'meteor/ostrio:flow-router-extra';
import { Workouts } from '../../../imports/api/workouts.js';
Template.workoutsLog.onCreated(function() {
this.subscribe("myWorkoutRoutines");
});
Template.workoutsLog.onRendered(function() {
});
Template.workoutsLog.helpers({
});
Template.workoutsLog.events({
});