This commit is contained in:
GleidsonDaniel 2024-04-30 08:58:44 -03:00
parent 0aae4dfd78
commit b03dcbec65
1 changed files with 3 additions and 2 deletions

View File

@ -13,8 +13,9 @@ const styles = StyleSheet.create({
},
text: {
fontSize: 14,
...sharedStyles.textRegular,
...sharedStyles.textAlignCenter
// jest error: TypeError: Cannot read property 'textRegular' of undefined
...sharedStyles?.textRegular,
...sharedStyles?.textAlignCenter
}
});