Skip to content

Instantly share code, notes, and snippets.

@zackbraksa
Last active March 29, 2021 13:24
Show Gist options
  • Save zackbraksa/0a02e7d0f9c34dbcd8a63a8c48136b95 to your computer and use it in GitHub Desktop.
Save zackbraksa/0a02e7d0f9c34dbcd8a63a8c48136b95 to your computer and use it in GitHub Desktop.
// 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