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 AppHeader from "@saleor/components/AppHeader"; import SearchBar from "@saleor/components/SearchBar"; import { sectionNames } from "@saleor/intl"; import { AttributeListUrlSortField } from "@saleor/attributes/urls"; import Container from "../../../components/Container"; import PageHeader from "../../../components/PageHeader"; import { ListActions, PageListProps, SearchPageProps, TabPageProps, SortPage } from "../../../types"; import { AttributeList_attributes_edges_node } from "../../types/AttributeList"; import AttributeList from "../AttributeList/AttributeList"; export interface AttributeListPageProps extends PageListProps, ListActions, SearchPageProps, SortPage, TabPageProps { attributes: AttributeList_attributes_edges_node[]; onBack: () => void; } const AttributeListPage: React.FC = ({ onAdd, onBack, initialSearch, onSearchChange, currentTab, onAll, onTabChange, onTabDelete, onTabSave, tabs, ...listProps }) => { const intl = useIntl(); return ( ); }; AttributeListPage.displayName = "AttributeListPage"; export default AttributeListPage;