/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; import packagejson from "../../package.json"; import { useSettings } from "../hooks"; import { useTranslation } from "react-i18next"; function Footer() { const { settings, loadingSettings } = useSettings(); const { t } = useTranslation(); return ( ); } export default Footer;