linstrom/frontend-reactive/app/routes/application.ts
mStar c75acc48a2 Add a bunch of placeholder files
Placeholder files for future app structure
Also figured out how to have root url code stuff
2024-09-19 16:43:15 +02:00

7 lines
153 B
TypeScript

import Route from '@ember/routing/route';
export default class ApplicationRoute extends Route {
model() {
console.log('root route loaded');
}
}