mirror of
https://github.com/timepill/timepill-app.git
synced 2025-04-30 09:59:31 +08:00
49 lines
976 B
JavaScript
49 lines
976 B
JavaScript
import React, {Component} from 'react';
|
|
import {StyleSheet, Text, View} from 'react-native';
|
|
|
|
import BlockUserList from '../component/block/blockUserList';
|
|
|
|
|
|
export default class BlockUserPage extends Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
|
|
};
|
|
}
|
|
|
|
static options(passProps) {
|
|
return {
|
|
topBar: {
|
|
title: {
|
|
text: '屏蔽'
|
|
}
|
|
},
|
|
statusBar: {
|
|
backgroundColor: 'white',
|
|
style: 'dark'
|
|
}
|
|
};
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<View style={localStyle.wrap}>
|
|
<BlockUserList ref={(r) => this.list = r}
|
|
{...this.props}
|
|
></BlockUserList>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
const localStyle = StyleSheet.create({
|
|
wrap: {
|
|
flex: 1,
|
|
backgroundColor: '#fff',
|
|
paddingTop: 1
|
|
}
|
|
});
|
|
|