import { Card, CardContent, Typography } from "@material-ui/core"; import CardTitle from "@saleor/components/CardTitle"; import Skeleton from "@saleor/components/Skeleton"; import React from "react"; import { useIntl } from "react-intl"; export interface OrderChannelSectionCardProps { selectedChannelName: string; } export const OrderChannelSectionCard: React.FC = ({ selectedChannelName }) => { const intl = useIntl(); return ( {selectedChannelName === undefined ? ( ) : ( {selectedChannelName} )} ); }; OrderChannelSectionCard.displayName = "OrderChannelSectionCard"; export default OrderChannelSectionCard;