Skip to content

Instantly share code, notes, and snippets.

@pporche87
Created January 7, 2018 04:21
Show Gist options
  • Save pporche87/6e1df67cabc85cf7adc88345bfb7c12a to your computer and use it in GitHub Desktop.
Save pporche87/6e1df67cabc85cf7adc88345bfb7c12a to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import Queers from './components/queers/queers'
class App extends Component {
render() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<h1 className="App-title">Welcome to React</h1>
</header>
<Queers />
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment