13 lines
239 B
TypeScript
13 lines
239 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-root',
|
||
|
templateUrl: './app.component.html',
|
||
|
styleUrls: ['./app.component.css']
|
||
|
})
|
||
|
export class AppComponent {
|
||
|
title = 'OpenSlides 3';
|
||
|
constructor() { }
|
||
|
|
||
|
}
|