Skip to content

Instantly share code, notes, and snippets.

@emmabostian
Created January 12, 2020 09:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emmabostian/757f77a93a5d11a48a64d56f7650bda1 to your computer and use it in GitHub Desktop.
Save emmabostian/757f77a93a5d11a48a64d56f7650bda1 to your computer and use it in GitHub Desktop.
import React, { useState } from "react"
import { useTransition } from "react-spring"
import Modal from "./Modal";
function App() {
return (
<div className="App">
<Modal />
</div>
);
}
const rootElement = document.getElementById("root"); ReactDOM.render(<App />, rootElement);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment