import React from "react"; import AuthedPageTemplate from "../Templates/AuthedPageTemplate"; import NewGolinkForm from "../Organisms/NewGoLinkForm"; import { Row, Col } from "reactstrap"; const NewGoLinkPage = props => { return (

Create a new Go link

A Go link is composed of the original "target" URL, and the unique "shortcode" to be used in the Go link.

); }; export default NewGoLinkPage;