import { TOKEN } from '@angular-challenges/module-to-standalone/core/providers'; import { Component, Inject } from '@angular/core'; @Component({ selector: 'lib-user-shell', template: ` -- User Panel --
More buttons ...
LoadedToken {{ token }}
`, host: { class: 'flex flex-col p-4 gap-3 border border-blue', }, }) export class UserShellComponent { constructor(@Inject(TOKEN) public token: string) {} }