No Description

MailScreen.js 409B

12345678910111213141516171819
  1. import React, { Component } from "react";
  2. import { View, Text } from "react-native";
  3. import { styles } from "../config/styles";
  4. export default class MailScreen extends Component {
  5. constructor(props) {
  6. super(props);
  7. this.state = {
  8. };
  9. };
  10. render() {
  11. return (
  12. <View style={styles.regcontainer}><Text>This is Mail</Text></View>
  13. );
  14. }
  15. }