summaryrefslogtreecommitdiffstats
path: root/components/datalake-handler/admin/src/app/database/database-list/dbs-modal/couchbase/couchbase.component.ts
blob: 9632174cdf5db0268b40ef61e1c9fea63ca9425d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Component, OnInit, Input } from "@angular/core";
import { NgbModal, NgbActiveModal } from "@ng-bootstrap/ng-bootstrap";

@Component({
  selector: "app-couchbase",
  templateUrl: "./couchbase.component.html",
  styleUrls: ["./couchbase.component.css"]
})
export class CouchbaseComponent implements OnInit {
  constructor(public activeModal: NgbActiveModal) {}

  ngOnInit() {}
}