account-page.component.ts
@Component({
imports: [
// Buy to unlock
],
selector: 'jet-account-page',
standalone: true,
styleUrl: './account-page.component.scss',
templateUrl: './account-page.component.html',
})
export class AccountPageComponent {
private readonly _loggerService: LoggerService = inject(LoggerService);
public constructor() {
// Buy to unlock
}
}