diff --git a/src/App.js b/src/App.js index 56e8786043..9c1062f022 100755 --- a/src/App.js +++ b/src/App.js @@ -1,33 +1,18 @@ -import React, { Component } from 'react'; -import logo from './logo.svg'; import './App.css'; -import { withAuthenticator, AmplifySignOut } from '@aws-amplify/ui-react' -import Amplify from 'aws-amplify'; -import aws_exports from './aws-exports'; -Amplify.configure(aws_exports); +import { NewHomes, NavBar, MarketingFooter } from './ui-components' -class App extends Component { - render() { - return ( -
- -
- logo -

- Edit src/App.js and save to reload. -

- - Learn React - -
-
- ); - } +function App() { +return ( + + +
+ + + +
+ + +); } -export default withAuthenticator(App); +export default App;