Skip to content

Instantly share code, notes, and snippets.

@eamonnboyle
Created February 22, 2021 14:57
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 eamonnboyle/91b968739821d2fd60ab720576132fbd to your computer and use it in GitHub Desktop.
Save eamonnboyle/91b968739821d2fd60ab720576132fbd to your computer and use it in GitHub Desktop.
Weather App Tutorial - Starter App Component
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.tsx</code> and save to reload.
</p>
...
</header>
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment