17 lines
470 B
JavaScript
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>
|
||
|
);
|
||
|
}
|
||
|
}
|