Making improvements

This commit is contained in:
Brian McGonagill 2026-02-04 17:05:47 -06:00
parent 78e0e82449
commit dd7e4a4933
11 changed files with 349 additions and 52 deletions

View file

@ -68,4 +68,11 @@ FlowRouter.route('/measurements', {
action() {
this.render('MainLayout', { main: "measurements"});
}
});
FlowRouter.route('/workoutLog', {
name: 'workoutLog',
action() {
this.render('MainLayout', { main: "workoutLog"});
}
});