Skip to content

Instantly share code, notes, and snippets.

@ColtonIdle
Created May 7, 2020 03:24
Show Gist options
  • Save ColtonIdle/42e0b3eb40da5a07f597478d318081e3 to your computer and use it in GitHub Desktop.
Save ColtonIdle/42e0b3eb40da5a07f597478d318081e3 to your computer and use it in GitHub Desktop.
create-react-app out of the box
import React from 'react';
import logo from './logo.svg';
import './App.css';
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment