BadgerBakedGood.js 170 B

12345678
  1. import { Text, View } from "react-native";
  2. export default function BadgerBakedGood(props) {
  3. return <View>
  4. <Text>I am a baked good!</Text>
  5. </View>
  6. }