//@flow import React from "react"; import { translate } from "react-i18next"; import ArrayConfigTable from "./ArrayConfigTable"; type Props = { proxyExcludes: string[], t: string => string, onChange: (boolean, any, string) => void, disabled: boolean }; type State = {}; class ProxyExcludesTable extends React.Component { render() { const { proxyExcludes, disabled, t } = this.props; return ( ); } removeEntry = (newExcludes: string[]) => { this.props.onChange(true, newExcludes, "proxyExcludes"); }; } export default translate("config")(ProxyExcludesTable);