import React from 'react'; import Diagram from './diagram.jpg'; import '../common/styles.css'; import '../../styles/base.scss'; import { Box, Button, Container, Grid, HelpPanel, SpaceBetween } from "@cloudscape-design/components"; import { Navigation } from "../common/navigation"; import { CustomAppLayout } from "../common/app-layout"; import Cognito from "./cognito"; import { useHistory } from "react-router-dom"; export default class HomepageView extends React.Component { render() { return ( } navigationOpen={false} content={} contentType="default" tools={} toolsHide={false} // labels={appLayoutNavigationLabels} /> ); } } export const ToolsContent = () => ( ###APP_TITLE###} footer={ <> } >

This solution demonstrates ###APP_TITLE###.

); // The content in the main content area of the App layout export function HomepageContent() { const history = useHistory(); const openAnalytics = () => { history.push("/InputFiles") } return (
###APP_TITLE### This solution demonstrates ###APP_TITLE###.
Architecture
); }