Home.js
585 Bytes
'use strict';
import React from 'react-native';
import PlainText from './PlainText';
let {
Component,
View,
Text,
Platform
} = React;
import RNRF, {
Route,
Scene,
TabBar,
Actions
} from 'react-native-router-flux';
export default class Home extends Component {
render() {
return (
<PlainText
topText={'同品类中品牌排名\n真好玩'}
bottomText={'76'}
containerStyle={{backgroundColor: 'white', width: 200, top: 100}}
/>
);
}
}