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