diff --git a/bob_party/Skin.js b/bob_party/Skin.js new file mode 100644 index 0000000..188d579 --- /dev/null +++ b/bob_party/Skin.js @@ -0,0 +1,31 @@ +import React, { Component } from "react"; +import { StyleSheet, View, Text, Alert, Pressable, Image} from 'react-native' + + +class Skin extends Component{ + constructor (props) { + super(props); + } + + render(){ + return( + + + {this.props.Name} + + ); + } +} + +const styles = StyleSheet.create({ + avatar: { + marginTop: 25, + marginLeft: 10, + width: 50, + height: 50, + borderRadius: '50%', + } + }); + +export default Skin; +