// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 // Import React and Amplify packages import React from 'react'; import { I18n } from 'aws-amplify'; // Import React Bootstrap components import Container from 'react-bootstrap/Container'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import Jumbotron from 'react-bootstrap/Jumbotron'; /** * Properties Interface * @interface IProps */ interface IProps {} /** * State Interface * @interface IState */ interface IState {} /** * The default home page * @class Home */ class Home extends React.Component { /** * Render this page. */ render() { return (

Amazon Virtual Andon

{ I18n.get('text.user.guide.for.more.information') } { I18n.get('text.user.guide') }

) } } export default Home;