Code QuizIntermediate

Default Case in Platform.select

Spot why web gets no value from Platform.select.

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

const spacing = Platform.select({
  ios: 12,
  android: 16,
  defaults: 8
});

export default spacing;

Why is spacing undefined on platforms like web?