Initial commit

This commit is contained in:
2024-06-01 20:46:43 +03:00
commit 51b54868bd
30 changed files with 15151 additions and 0 deletions

14
src/app/app.component.ts Normal file
View File

@@ -0,0 +1,14 @@
import { Component } from '@angular/core';
import { RouterModule } from '@angular/router';
import { NxWelcomeComponent } from './nx-welcome.component';
@Component({
standalone: true,
imports: [NxWelcomeComponent, RouterModule],
selector: 'app-root',
templateUrl: './app.component.html',
styleUrl: './app.component.scss',
})
export class AppComponent {
title = 'NitroPlusTranslator';
}