mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-25 11:51:07 +00:00
12 lines
420 B
TypeScript
12 lines
420 B
TypeScript
import * as React from "react";
|
|
import { ReactAdapter } from "../../../Bindings/ReactBindingHandler";
|
|
import { ClusterLibraryGrid, ClusterLibraryGridProps } from "./ClusterLibraryGrid";
|
|
|
|
export class ClusterLibraryGridAdapter implements ReactAdapter {
|
|
public parameters: ko.Observable<ClusterLibraryGridProps>;
|
|
|
|
public renderComponent(): JSX.Element {
|
|
return <ClusterLibraryGrid {...this.parameters()} />;
|
|
}
|
|
}
|