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 { CollectionList_collections_edges_node } from "../../types/CollectionList"; import CollectionList from "../CollectionList/CollectionList"; export interface CollectionListPageProps extends PageListProps, ListActions { collections: CollectionList_collections_edges_node[]; } const CollectionListPage: React.StatelessComponent = ({ disabled, onAdd, ...listProps }) => ( ); CollectionListPage.displayName = "CollectionListPage"; export default CollectionListPage;