@@ -0,0 +1,24 @@
+// import { Remote } from 'uppy'
+// const googleDrive = new Remote({ source: 'google' })
+
+// const Modal = (props) => {
+// const listFiles = () => {
+// googleDrive.actions.list()
+// .then((action) => {
+// props.dispatch(action)
+// })
+// }
+// return html`
+// <header>Modal Example</header>
+// ${GoogleBrowser({
+// listFiles
+// })}
+// `
+// const GoogleBrowser = (props) => {
+// <button onclick=${props.listFiles}>List Files!</button>