import React from "react"; import { Amplify } from "aws-amplify"; import { AmplifyProvider, Authenticator, Button, Flex, Image, Text, View, } from "@aws-amplify/ui-react"; import aws_exports from "./aws-exports"; import "@aws-amplify/ui-react/styles.css"; import theme from "./theme"; import logo from "./logo.svg"; Amplify.configure(aws_exports); const App = () => { return ( {({ signOut, user }) => ( logo {user && ( Hello {user.username} )} Edit src/App.tsx and save to reload. )} ); }; export default App;