You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
491 B
19 lines
491 B
import { Component, OnInit } from '@angular/core';
|
|
import { Router } from '@angular/router';
|
|
|
|
@Component({
|
|
selector: 'app-landing-page',
|
|
templateUrl: './landing-page.component.html',
|
|
styleUrls: ['./landing-page.component.css']
|
|
})
|
|
export class LandingPageComponent implements OnInit{
|
|
constructor(private router: Router){}
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
// Si click sur "Run", on redirige vers la page d'édition
|
|
onContinue():void{
|
|
this.router.navigateByUrl('/editor');
|
|
}
|
|
}
|