PromucFlow_constructor/app/client/src/widgets/TableWidget.tsx

28 lines
620 B
TypeScript
Raw Normal View History

2019-09-12 08:11:25 +00:00
import React from "react";
import BaseWidget, { IWidgetProps, IWidgetState } from "./BaseWidget";
import { WidgetType } from "../constants/WidgetConstants";
import TextComponent from "../editorComponents/TextComponent";
class TableWidget extends BaseWidget<TableWidgetProps, IWidgetState> {
getPageView() {
return (
<div/>
);
}
getWidgetType(): WidgetType {
return "TABLE_WIDGET";
}
}
export type PaginationType = "PAGES" | "INFINITE_SCROLL"
export interface TableWidgetProps extends IWidgetProps {
pageKey?: string;
label: string
tableData?: object[]
}
export default TableWidget;