Skip to content
Snippets Groups Projects
Select Git revision
  • e1f9642837291e62fc41c97403eb54a3e7a65438
  • main default protected
  • v0.0.5
  • v0.0.4
  • v0.0.3
  • v0.0.2
  • v0.0.1
  • initial_release
8 results

run-linux.sh

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    home-page.component.ts 281 B
    import { Component, OnInit } from '@angular/core';
    
    @Component({
      selector: 'app-home-page',
      templateUrl: './home-page.component.html',
      styleUrls: ['./home-page.component.scss']
    })
    export class HomePageComponent implements OnInit {
    
      constructor() { }
    
      ngOnInit() {
      }
    
    }