Files
clients/libs/components/src/input/input.module.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
206 B
TypeScript
Raw Normal View History

2022-06-02 09:34:13 +02:00
import { NgModule } from "@angular/core";
import { BitInputDirective } from "./input.directive";
@NgModule({
imports: [BitInputDirective],
2022-06-02 09:34:13 +02:00
exports: [BitInputDirective],
})
export class InputModule {}