f0ckapp_react/routes/contact.js
2020-01-20 18:24:37 +01:00

17 lines
470 B
JavaScript

import React from "react";
import theme from "../config/themes";
import { Text, View, Image } from 'react-native';
export default class ContactScreen extends React.Component {
render() {
return (
<View style={{ flex: 1, backgroundColor: theme.background }}>
<Image source={{ uri: theme.logo }} style={{ width: 112, height: 28, marginTop: 16 }} />
<Text>Got a problem? We have the answer: admin@f0ck.space</Text>
</View>
);
}
}