From 96a81cb5ec8df87f7457532a036e926a10471b30 Mon Sep 17 00:00:00 2001 From: cyber-dream Date: Mon, 31 Oct 2022 21:52:47 +0300 Subject: [PATCH] import loading screen component --- src/app/app.module.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/app.module.ts b/src/app/app.module.ts index ca26181..ce9ca93 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -14,9 +14,10 @@ import { MainModule } from './components/main/main.module'; import { PlaygroundModule } from './components/playground/playground.module'; import { SandboxModule } from './components/sandbox/sandbox.module'; import { SignInModule } from './components/sign-in/sign-in.module'; +import { LoadingScreenComponent } from './components/loading-screen/loading-screen.component'; @NgModule({ - declarations: [AppComponent], + declarations: [AppComponent, LoadingScreenComponent], imports: [ BrowserModule, AppRoutingModule,