ilink-world/screens/drawer/HeaderDrawer.js

17 lines
323 B
JavaScript
Raw Normal View History

2019-06-16 13:09:54 +00:00
import React, { Component } from 'react'
import {View,Text,StyleSheet} from 'react-native';
export default class HeaderDrawer extends Component {
render() {
return (
<View style={slyle}>
</View>
)
}
}
const style=StyleSheet.create({
content:{
backgroundColor:'#1023fe'
}
})