Reference Source

src/app/top/top.component.ts

import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';

declare var $;  // jQuery

/**
 * トップページ
 */
@Component({
  selector: 'app-top',
  templateUrl: './top.component.html',
  styleUrls: ['./top.component.css']
})
export class TopComponent implements OnInit {
  constructor(private router: Router) {}

  ngOnInit() {}
}