mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
13 lines
266 B
TypeScript
13 lines
266 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-naming',
|
||
|
templateUrl: './naming.component.html',
|
||
|
styleUrls: ['./naming.component.scss'],
|
||
|
})
|
||
|
export class NamingComponent implements OnInit {
|
||
|
constructor() {}
|
||
|
|
||
|
ngOnInit(): void {}
|
||
|
}
|