Skip to content

Instantly share code, notes, and snippets.

@Gogetter
Created August 8, 2020 12:52
Show Gist options
  • Save Gogetter/8a5c82987eb1f3ea28a2e530cc9cbebd to your computer and use it in GitHub Desktop.
Save Gogetter/8a5c82987eb1f3ea28a2e530cc9cbebd to your computer and use it in GitHub Desktop.
app js file for reactjs-soujourn blog post
import React from "react"
import Search from "./components/search/Search";
import "./style.css"
function App() {
return (
<div>
<Search />
</div>
)
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment