Skip to content

Instantly share code, notes, and snippets.

@Reine0017
Created April 28, 2020 12:48
Show Gist options
  • Save Reine0017/cfdf982da94981f05d6cc7ebc6526536 to your computer and use it in GitHub Desktop.
Save Reine0017/cfdf982da94981f05d6cc7ebc6526536 to your computer and use it in GitHub Desktop.
React "Hello World Counter" App.js
import React from "react";
import logo from "./logo.svg";
import "./App.css";
import Example from "./Example";
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
<Example />
</p>
</header>
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment