]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
48f2554003826c8d7dc8883ac3239b12ef2776ff
[ceph.git] /
1 import { Component, Input } from '@angular/core';
2
3 @Component({
4   selector: 'cd-rgw-bucket-details',
5   templateUrl: './rgw-bucket-details.component.html',
6   styleUrls: ['./rgw-bucket-details.component.scss']
7 })
8 export class RgwBucketDetailsComponent {
9   @Input()
10   selection: any;
11
12   constructor() {}
13 }