import { BaseStyleProps, FlexProps, View } from '@aws-amplify/ui-react'; interface BrowserMockProps extends FlexProps, BaseStyleProps { location?: string; } export const BrowserMock = ({ children, location, ...rest }) => ( {location ? ( {location} ) : null} {children} );