mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-18 05:50:16 -05:00
12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { BrowserModule } from '@angular/platform-browser'
|
|
|
|
import { AppComponent } from './app.component'
|
|
|
|
@NgModule({
|
|
declarations: [AppComponent],
|
|
imports: [BrowserModule],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule {}
|