mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-24 02:38:58 +00:00
12 lines
392 B
JavaScript
12 lines
392 B
JavaScript
import html from '../../core/html'
|
|
|
|
export default (props) => {
|
|
const demoLink = props.demo ? html`<a onclick=${props.handleDemoAuth}>Proceed with Demo Account</a>` : null
|
|
return html`
|
|
<div class="UppyGoogleDrive-authenticate">
|
|
<h1>You need to authenticate with Google before selecting files.</h1>
|
|
<a href=${props.link}>Authenticate</a>
|
|
${demoLink}
|
|
</div>
|
|
`
|
|
}
|