import QueryString from 'query-string'; import { Button, Container, Form, FormGroup, Input, Jumbotron, Label, Row, } from '../components/Bootstrap'; export const HomeView = (props) => { return (

Welcome to Inferno

To get started, edit src/App.js and save to reload.

{
				JSON.stringify(QueryString.parse(window.location.search), undefined, 2)
			}
) }