rsnext/examples/with-firebase-authentication/pages/example.js

24 lines
388 B
JavaScript
Raw Normal View History

import Link from 'next/link'
2020-05-18 21:24:37 +02:00
const Example = (props) => {
return (
<div>
<p>
This page is static because it does not fetch any data or include the
authed user info.
</p>
<Link href={'/'}>
<a>Home</a>
</Link>
</div>
)
}
Example.displayName = 'Example'
Example.propTypes = {}
Example.defaultProps = {}
export default Example