simba-mobile-cad4/app/screens/drawer/HeaderDrawer.js

17 lines
323 B
JavaScript
Raw Permalink Normal View History

2025-01-07 09:47:45 +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'
}
})