aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_pages/playground/playground.component.ts
blob: 007a455e4ab985cf74e0b182080b1ded8da9db52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-playground',
  templateUrl: './playground.component.html',
  styleUrls: ['./playground.component.css']
})
export class PlaygroundComponent implements OnInit {

  constructor() { }

  ngOnInit(): void {
  }

}