import { Component } from "../component/component"; import { xml } from "../tags"; export class RouteComponent extends Component { static template = xml` `; get routeComponent(): any { return this.env.router.currentRoute && this.env.router.currentRoute.component; } }