/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import React, { ReactNode } from "react"; import { useTranslation } from "react-i18next"; interface Props { children: ReactNode; className?: string; } function Header(props: Props) { const { t } = useTranslation(); return (
{props.children}
); } export default Header;