import React from "react";import { SafeAreaView, ScrollView, StyleSheet, Text, View } from "react-native";const App = () => ( Original Object Scale by 2 ScaleX by 2 ScaleY by 2 Rotate by 45 deg Rotate X&Z by 45 deg Rotate Y&Z by 45 deg SkewX by 45 deg SkewY by 45 deg Skew X&Y by 30 deg TranslateX by -50 TranslateY by 50 );const styles = StyleSheet.create({ container: {flex: 1}, scrollContentContainer: {alignItems: "center", paddingBottom: 60}, box: { height: 100, width: 100, borderRadius: 5, marginVertical: 40, backgroundColor: "#61dafb", alignItems: "center", justifyContent: "center" }, text: { fontSize: 14, fontWeight: "bold", margin: 8, color: "#000", textAlign: "center" }});export default App;