Skip to content

Instantly share code, notes, and snippets.

Created March 2, 2018 20:11
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 anonymous/858237f1a474efe6d6d91d662dbff5d2 to your computer and use it in GitHub Desktop.
Save anonymous/858237f1a474efe6d6d91d662dbff5d2 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react'
import styled from 'styled-components'
import logo from './logo.svg'
import './App.css'
class App extends Component {
render() {
return (
<AppWrapper>
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<h1 className="App-title">Welcome to React</h1>
</header>
<p className="App-intro">
To get started, edit <code>src/App.js</code> and save to
reload.
</p>
</AppWrapper>
)
}
}
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment