mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 05:54:56 -06:00
23 lines
445 B
JavaScript
23 lines
445 B
JavaScript
// @flow
|
|
import React, { Component } from 'react';
|
|
import { Text, View } from 'react-native';
|
|
import theme from '../ui-theme';
|
|
|
|
type Props = {
|
|
route: Object,
|
|
navigator: Object,
|
|
};
|
|
|
|
export default class Faves extends Component {
|
|
static displayName = 'Faves';
|
|
|
|
props: Props;
|
|
|
|
render() {
|
|
return (
|
|
<View style={theme.page.container}>
|
|
<Text>Faves!</Text>
|
|
</View>
|
|
);
|
|
}
|
|
}
|