import Button from "@material-ui/core/Button"; import Card from "@material-ui/core/Card"; 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 "@saleor/i18n"; import { FilterPageProps, ListActions, PageListProps } from "@saleor/types"; import { OrderList_orders_edges_node } from "../../types/OrderList"; import { OrderListUrlFilters } from "../../urls"; import OrderList from "../OrderList"; import OrderListFilter from "../OrderListFilter"; export interface OrderListPageProps extends PageListProps, ListActions, FilterPageProps { orders: OrderList_orders_edges_node[]; } const OrderListPage: React.FC = ({ currencySymbol, currentTab, filtersList, filterTabs, initialSearch, onAdd, onAll, onSearchChange, onFilterAdd, onFilterSave, onTabChange, onFilterDelete, ...listProps }) => ( ); OrderListPage.displayName = "OrderListPage"; export default OrderListPage;