/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT-0 */ import { FunctionComponent, PropsWithChildren } from 'react' const NotFound: FunctionComponent> = ({ what, backUrl }) => { return ( <>

{what} not found

Back to list
) } export default NotFound