mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2025-04-19 12:03:10 +03:00
21 lines
473 B
TypeScript
21 lines
473 B
TypeScript
import { BrowserModule } from '@angular/platform-browser';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { CryptoProComponent } from './crypto-pro/crypto-pro.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
CryptoProComponent
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
FormsModule
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|