import React, { useState } from 'react'; import ContentWrapper from './ContentWrapper'; import { REVERSE_PROXY_TYPES } from '../actions/constants' export default ({ onClick }) => { const [reverseProxy, setReverseProxy] = useState(REVERSE_PROXY_TYPES.NONE); const onChange = event => { setReverseProxy(event.target.value); } return

Reverse Proxy

Please choose the reverse proxy you're using. This is just so we can provide you with a template later, if you already know how you're going to set yours up don't worry too much about this.

}