mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-27 12:51:41 +00:00
16 lines
348 B
TypeScript
16 lines
348 B
TypeScript
import CassandraAddCollectionPaneTemplate from "./CassandraAddCollectionPane.html";
|
|
export class PaneComponent {
|
|
constructor(data: any) {
|
|
return data.data;
|
|
}
|
|
}
|
|
|
|
export class CassandraAddCollectionPaneComponent {
|
|
constructor() {
|
|
return {
|
|
viewModel: PaneComponent,
|
|
template: CassandraAddCollectionPaneTemplate,
|
|
};
|
|
}
|
|
}
|