import * as React from "react"; import webShare, { WebShareInterface } from "react-web-share-api"; import { MenuItem } from "@material-ui/core"; export interface OwnProps { style: object; } const ShareMenu: React.FunctionComponent = ({ share, isSupported, style }) => isSupported ? ( Share ) : null; export default webShare()(ShareMenu);