holywar20
3/28/2019 - 3:40 PM

Basic React-Native component

A basic component for react-native app development

import React, {Component} from 'react';
import View from "react-native";

export default class Logout extends React.Component{
	constructor(props){
		super(props);
		this.state = {
			
		}

		this.navigation = props.navigation;
	}

	render(){
		return(
			<View>
				Logout Screen
			</View>
		);
	}
}