import Button from "@material-ui/core/Button"; import Card from "@material-ui/core/Card"; import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; import Container from "@saleor/components/Container"; import PageHeader from "@saleor/components/PageHeader"; import { sectionNames } from "@saleor/intl"; import { FilterPageProps, ListActions, PageListProps } from "@saleor/types"; import { OrderList_orders_edges_node } from "../../types/OrderList"; import OrderList from "../OrderList"; import OrderListFilter, { OrderFilterKeys } from "../OrderListFilter"; export interface OrderListPageProps extends PageListProps, ListActions, FilterPageProps { orders: OrderList_orders_edges_node[]; } const OrderListPage: React.FC = ({ currencySymbol, currentTab, filtersList, initialSearch, tabs, onAdd, onAll, onSearchChange, onFilterAdd, onTabChange, onTabDelete, onTabSave, ...listProps }) => { const intl = useIntl(); return ( ); }; OrderListPage.displayName = "OrderListPage"; export default OrderListPage;