importReactfrom"react";importAuthedPageTemplatefrom"../Templates/AuthedPageTemplate";importNewGolinkFormfrom"../Organisms/NewGoLinkForm";constNewGoLinkPage=props=>{return(<AuthedPageTemplate><h2className="mt-4 font-weight-light">Create a new Go link</h2><pclassName="text-muted"> A Go link is composed of the original "target" URL, and the shortcode to be used in the Go link.</p><legend/><NewGolinkForm/></AuthedPageTemplate>);};exportdefaultNewGoLinkPage;