mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 01:25:37 -05:00
* Move properties container and loading spinner to common components * Fix compile error * Fix tests
17 lines
641 B
TypeScript
17 lines
641 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import LoadingSpinner from './loadingSpinner.component';
|
|
|
|
@NgModule({
|
|
imports: [CommonModule],
|
|
exports: [LoadingSpinner],
|
|
declarations: [LoadingSpinner]
|
|
})
|
|
export class LoadingSpinnerModule { }
|