feat(challenge26): generator feature component

This commit is contained in:
thomas
2023-06-26 22:30:15 +02:00
parent d31ea29032
commit 2a8b8ea59e
17 changed files with 349 additions and 1 deletions

View File

@@ -0,0 +1 @@
export * from './lib/base-url.token';

View File

@@ -0,0 +1,3 @@
import { InjectionToken } from '@angular/core';
export const BASE_URL = new InjectionToken<string>('base_url');