-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a11968
commit 614d7c3
Showing
4 changed files
with
32 additions
and
8 deletions.
There are no files selected for viewing
9 changes: 7 additions & 2 deletions
9
lifescape-app/components/character/characterEquippedItems/CharacterEquippedItems.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
lifescape-app/components/character/characterEquippedItems/CharacterView.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { View, Text, Image } from "react-native"; | ||
import React from "react"; | ||
|
||
const CharacterView = () => { | ||
return ( | ||
<View className=""> | ||
<Image | ||
className="h-24 w-24 rounded-md" | ||
source={require("@/assets/images/cat.jpg")} | ||
/> | ||
</View> | ||
); | ||
}; | ||
|
||
export default CharacterView; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters