//@flow import React from "react"; import Button, { type ButtonProps } from "./Button"; import type {File} from "@scm-manager/ui-types"; type Props = { displayName: string, url: string }; class DownloadButton extends React.Component { render() { const {displayName, url} = this.props; return ( {displayName} ); } } export default DownloadButton;