Explore Library
Code QuizBeginner

StyleSheet.create

Learn the correct method name for defining styles.

Codejavascript
import { StyleSheet } from 'react-native';

const styles = StyleSheet.new({
  box: { padding: 10 },
});

export default styles;

What is the bug in this code?