Created
June 24, 2020 14:39
-
-
Save chrisoverstreet/7851f13ec21911a482bf5fc49e2c9d23 to your computer and use it in GitHub Desktop.
pages/test.jsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
// pages/test.jsx | |
import React from 'react'; | |
import Link from 'next/link'; | |
import LinkButton from '../components/homee-ui/LinkButton'; | |
export default () => ( | |
<div> | |
<Link href="/workbench/[bucket]" as="/workbench/active" passHref> | |
<LinkButton>Test</LinkButton> | |
</Link> | |
</div> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment