mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-01-01 15:22:08 +00:00
12 lines
435 B
TypeScript
12 lines
435 B
TypeScript
import * as React from "react";
|
|
import { ReactAdapter } from "../../../Bindings/ReactBindingHandler";
|
|
import { LibraryManageComponent, LibraryManageComponentProps } from "./LibraryManage";
|
|
|
|
export class LibraryManageComponentAdapter implements ReactAdapter {
|
|
public parameters: ko.Observable<LibraryManageComponentProps>;
|
|
|
|
public renderComponent(): JSX.Element {
|
|
return <LibraryManageComponent {...this.parameters()} />;
|
|
}
|
|
}
|