JSX形式で記述して、Macのシュミレータで結果を見ようとしたのですがシンタックスエラーになってしまいました。ある講義動画をそのまま真似ているため文法エラーは考えにくいのですが、どこが間違っているのでしょうか?
JavaScript
1import React from "react"; 2import { StyleSheet, Text, View } from "react-native"; 3 4const styles = StyleSheet.create({ 5 container: { 6 flex: 1, 7 backgroundColor: "#fff", 8 alignItems: "center", 9 justifyContent: "center" 10 }, 11 itemContainer: { 12 height: 100, 13 width: '100%', 14 borderColor: 'gray', 15 borderWidth: 1, 16 flexDirection: 'row' 17 }, 18 leftContainer: { 19 backgroundColor: 'red', 20 width: 100 21 }, 22 rightContainer: { 23 backgroundColor: 'bule', 24 flex: 1 25 } 26}); 27 28export default function App() { 29 return ( 30 <View style={styles.container}> 31 <View style={styles.itemContainer}> 32 <View style={styles.leftContainer}> 33 <View style={styles.rightContainer}> 34 </View> // ここでエラー表記が出ています。 35 </View> 36 ); 37} 38
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/01 13:33