import React from "react"; import { WithTranslation, withTranslation } from "react-i18next"; import { File } from "@scm-manager/ui-types"; import { DownloadButton } from "@scm-manager/ui-components"; type Props = WithTranslation & { file: File; }; class DownloadViewer extends React.Component { render() { const { t, file } = this.props; return (
); } } export default withTranslation("repos")(DownloadViewer);