mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 03:16:48 +03:00
15 lines
428 B
TypeScript
15 lines
428 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
import { RedocModule } from './redoc.module';
|
|
import { Redoc } from './components/index';
|
|
|
|
@NgModule({
|
|
imports: [ BrowserModule, BrowserAnimationsModule, RedocModule ],
|
|
bootstrap: [ Redoc ],
|
|
exports: [ Redoc ]
|
|
})
|
|
export class AppModule {
|
|
}
|