Combining Styles
Learn to combine StyleSheet and inline styles with an array.
Codejavascript
import React from 'react';
import { View, StyleSheet } from 'react-native';
const styles = StyleSheet.create({ box: { padding: 10 } });
export default function Card() {
return <View style={styles.box, { margin: 5 }} />;
}What is the bug in this code?