Skip to content

Instantly share code, notes, and snippets.

@Weiyuan-Lane
Created August 11, 2019 12:52
Show Gist options
  • Save Weiyuan-Lane/3274589206113211ecedaccf2ff557a1 to your computer and use it in GitHub Desktop.
Save Weiyuan-Lane/3274589206113211ecedaccf2ff557a1 to your computer and use it in GitHub Desktop.
Sample component using `BasePathLink`
import BasePathLink from 'BasePathLink';
export default function Home() {
return (
<div>
This is an empty page, to test this SPA.<br/>
You should just go <BasePathLink href='/'><a>home</a></BasePathLink><br/>
Or you can go <BasePathLink href='/deep'><a>deep</a></BasePathLink>
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment