S SmartDocs
시리즈: angular typescript 9 줄 · 업데이트 2026-02-03

app.routes.ts

angular/examples/week01-02/src/app/app.routes.ts

import { Routes } from '@angular/router';
import { SandboxComponent } from './ui/sandbox.component';

export const routes: Routes = [
  {
    path: '',
    component: SandboxComponent,
  },
];

관련 글