import Button from "@material-ui/core/Button"; import AddIcon from "@material-ui/icons/Add"; import * as React from "react"; import Container from "@saleor/components/Container"; import PageHeader from "@saleor/components/PageHeader"; import i18n from "../../../i18n"; import { ListActions, PageListProps } from "../../../types"; import { VoucherList_vouchers_edges_node } from "../../types/VoucherList"; import VoucherList from "../VoucherList"; export interface VoucherListPageProps extends PageListProps, ListActions { defaultCurrency: string; vouchers: VoucherList_vouchers_edges_node[]; } const VoucherListPage: React.StatelessComponent = ({ defaultCurrency, disabled, onAdd, onNextPage, onPreviousPage, onRowClick, pageInfo, vouchers, isChecked, selected, toggle, toggleAll, toolbar }) => ( ); VoucherListPage.displayName = "VoucherListPage"; export default VoucherListPage;