10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
|
|
import React from "react";
|
||
|
|
import { TableSearchWidget } from "./TableSearchWidget";
|
||
|
|
|
||
|
|
export class TableSearchWidgetRenderer {
|
||
|
|
static render(component: any) {
|
||
|
|
return <TableSearchWidget component={component} />;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|