import React from 'react'; import { Flex, View } from '@aws-amplify/ui-react'; import { Backdrop } from './Backdrop'; import { BackdropProps } from './types'; export function withBackdrop( Content: (props: Props) => JSX.Element, options: BackdropProps = {} ): (props: Props) => JSX.Element { return function ContentWithBackdrop(props: Props) { return ( <> ); }; }