Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Created October 3, 2018 12:16
Show Gist options
  • Save tsh-code/aa7d16a977666c67c6e6aedc117ba8b3 to your computer and use it in GitHub Desktop.
Save tsh-code/aa7d16a977666c67c6e6aedc117ba8b3 to your computer and use it in GitHub Desktop.
import * as React from 'react';
import { createRoute } from 'router-8000';
import { LandingViewContainer } from 'views/landing/container';
function getRouteComponent(): JSX.Element {
return <LandingViewContainer />;
}
createRoute('/', getRouteComponent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment