17 lines
413 B
JavaScript
17 lines
413 B
JavaScript
import * as React from 'react';
|
|
import { Text } from 'react-native';
|
|
import { Overlay } from 'react-native-elements';
|
|
|
|
export default function Logout(props){
|
|
return (
|
|
<Overlay
|
|
isVisible={true}
|
|
windowBackgroundColor="rgba(255, 255, 255, .5)"
|
|
overlayBackgroundColor="red"
|
|
width="auto"
|
|
height="auto"
|
|
>
|
|
<Text>Are you sure you want to log out?</Text>
|
|
</Overlay>
|
|
);
|
|
} |