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.
angular_minigame/src/app/components/difficulty-selector/difficulty-selector.compone...

14 lines
420 B

import { Component } from '@angular/core';
import { RouterModule } from '@angular/router';
import { MatButtonModule } from '@angular/material/button';
@Component({
selector: 'app-difficulty-selector',
standalone: true,
imports: [RouterModule,MatButtonModule],
templateUrl: './difficulty-selector.component.html',
styleUrl: './difficulty-selector.component.css'
})
export class DifficultySelectorComponent {
}