The Development Server Returned Error Code:500 React Native expo error

Please run expo diagnostics and paste the log that’s printed out along with your question or issue!
Expo CLI 3.21.5 environment info:
System:
OS: Windows 10 10.0.18363
Binaries:
Node: 13.3.0 - C:\Program Files\nodejs\node.EXE
Yarn: 1.22.4 - C:\Program Files (x86)\Yarn\bin\yarn.CMD
npm: 6.13.1 - C:\Program Files\nodejs\npm.CMD
IDEs:
Android Studio: Version 3.6.0.0 AI-192.7142.36.36.6308749

type or paste code here
```import React from 'react'
import{StyleSheet,Text,View}from 'react-native'
import RegForm from '.app/Components/RegForm'
export default class App extends React.Component{
  render(){
    return(
      <View style={Styles.Container}>
        <RegForm />
      </View>
    )
  }
}
const styles=StyleSheet.Create({
  container:{
    flex:1 ,
    justifyContent:'center',
    backgroundColor:'#36485f' ,
    paddingLeft:60 ,
    paddingRight:60 ,
  },
})

type or paste code here
import React from ‘react’
import{StyleSheet,Text,View,TextInput,TouchableOpacity}from ‘react-native’

export default class RegForm extends React.Component{
render(){
return(

Registration






Sign Up


)
}
}
const styles=StyleSheet.Create({
RegForm:{
alignSelf:‘strech’ ,
},
header:{
fontSize:24 ,
color:‘#fff’,
paddingBottom:10 ,
marginBottom:40 ,
borderBottomColor:‘#199187’,
borderBottomWidth:‘1’,
},
TextInput:{
alignSelf:‘strech’,
height:40 ,
marginBottom:30 ,
color:‘#fff’ ,
borderBottomColor:‘#f8f8f8’,
borderBottomWidth:1 ,
},
button:{
alignSelf:‘strech’,
alignItem:‘center’,
padding:20 ,
backgroundColor:‘#59cbbd’,
marginTop:30 ,
},
btntext:{
color:‘#fff’,
fontWeight:‘bold’,

}
})

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.