All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.atoms.atoms.module.ts Maven / Gradle / Ivy

The newest version!
/*
 * SPDX-FileCopyrightText: 2017-2024 Enedis
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 */

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';

import { ButtonComponent } from './buttons/button.component';
import { LinkComponent } from './buttons/link.component';
import { InputComponent } from './forms/input/input.component';

@NgModule({
    imports: [
        CommonModule,
        FormsModule
    ],
    exports: [
        ButtonComponent,
        LinkComponent,
        InputComponent
    ],
    declarations: [
        ButtonComponent,
        LinkComponent,
        InputComponent
    ]
})
export class AtomsModule {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy