Last active
March 29, 2021 13:24
-
-
Save zackbraksa/0a02e7d0f9c34dbcd8a63a8c48136b95 to your computer and use it in GitHub Desktop.
This file contains 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
// src/App.js | |
import React from "react"; | |
import { db } from "./firebase"; | |
function App() { | |
db.doc("hello/world").set({ hello: "world" }); | |
return <div />; | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment