Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- import {AndretheDB} from './AndretheGiant.js'
- let shnurgs = []
- AndretheDB.collection('users').onSnapshot( data => {
- shnurgs = data.docs
- })
- // this is Users.svelte in the tutorial https://www.youtube.com/watch?v=Rr2kKjYIYRM&t=1890s
- /console.log('AndretheDB ',AndretheDB)
- </script>
- <div id="users">
- Users
- {#each shnurgs as shnurgs}
- {shnurgs.id}
- <div>user</div>
- {JSON.stringify(shnurgs.data)}
- {/each}
- </div>
- <style>
- </style>
Add Comment
Please, Sign In to add comment