Skip to content

Instantly share code, notes, and snippets.

@kenny-io
Created March 27, 2019 15:42
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 kenny-io/8e7b590a40506e54ff9509c68ae029b0 to your computer and use it in GitHub Desktop.
Save kenny-io/8e7b590a40506e54ff9509c68ae029b0 to your computer and use it in GitHub Desktop.
// src/App.js
import React, { Component } from 'react';
import './App.css';
import Login from './components/Login'
class App extends Component {
render() {
return(
<Login/>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment