399600ff67a56d652ce8631700be9089e9720b64
[dcaegen2/services.git] /
1 import { Component, OnInit, Input } from "@angular/core";
2 import { NgbModal, NgbActiveModal } from "@ng-bootstrap/ng-bootstrap";
3
4 @Component({
5   selector: "app-mongodb",
6   templateUrl: "./mongodb.component.html",
7   styleUrls: ["./mongodb.component.css"]
8 })
9 export class MongodbComponent implements OnInit {
10   @Input() title = "1234";
11
12   constructor(public activeModal: NgbActiveModal) {}
13
14   ngOnInit() {}
15 }