Added Measurements input

This commit is contained in:
Brian McGonagill 2026-02-10 16:38:44 -06:00
parent ba17d57987
commit 98a86ca6a8
12 changed files with 337 additions and 10 deletions

View file

@ -89,4 +89,18 @@ FlowRouter.route('/logEntry', {
action() {
this.render('MainLayout', { main: 'logEntry'});
}
});
FlowRouter.route('/measurements', {
name: 'measurements',
action() {
this.render('MainLayout', { main: 'measurements'});
}
});
FlowRouter.route('/measLogEntry', {
name: 'measLogEntry',
action() {
this.render('MainLayout', { main: 'measLogEntry'});
}
});