S SmartDocs
シリーズ: angular typescript 9 行 · 更新日 2026-02-03

app.routes.ts

angular/examples/week03-04/src/app/app.routes.ts

import { Routes } from '@angular/router';
import { FormSandboxComponent } from './examples/form-sandbox.component';

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

関連記事