// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { I18n } from '@aws-amplify/core'; import Navbar from 'react-bootstrap/Navbar'; import Nav from 'react-bootstrap/Nav'; import { signOut } from '../../util/Utils'; /** * Renders the header of the UI. * @returns The header */ export default function Header(): JSX.Element { return (
{I18n.get('application')}
); }