Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created April 19, 2019 19:07
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 amandeepmittal/b7a37c841f328f5d0641b3d107178925 to your computer and use it in GitHub Desktop.
Save amandeepmittal/b7a37c841f328f5d0641b3d107178925 to your computer and use it in GitHub Desktop.
// App.js
import React, { Component } from "react"
import "./App.css"
import Amplify from "aws-amplify"
import awsmobile from "./aws-exports"
import { withAuthenticator } from "aws-amplify-react"
Amplify.configure(awsmobile)
class App extends Component {
render() {
return (
<div className='App'>
<div className='App-header'>
<h1>
<span role='img' aria-label='write'>
📝
</span>
React + Amplify NoteApp
</h1>
<form className='form-note'>
<input type='text' className='form-input' placeholder='Add your note' />
<button type='submit' className='form-button'>
Add
</button>
</form>
</div>
</div>
)
}
}
export default withAuthenticator(App, true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment