-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Closed
Labels
Description
Environment
React Native Environment Info: System: OS: macOS High Sierra 10.13.5 CPU: x64 Intel(R) Core(TM) i7-4870HQ CPU @ 2.50GHz Memory: 698.89 MB / 16.00 GB Shell: 5.3 - /bin/zsh Binaries: Node: 8.11.3 - ~/.nvm/versions/node/v8.11.3/bin/node Yarn: 1.3.2 - /usr/local/bin/yarn npm: 5.6.0 - ~/.nvm/versions/node/v8.11.3/bin/npm Watchman: 4.7.0 - /usr/local/bin/watchman SDKs: iOS SDK: Platforms: iOS 11.4, macOS 10.13, tvOS 11.4, watchOS 4.3 Android SDK: Build Tools: 23.0.1, 23.0.2, 24.0.0, 24.0.1, 24.0.2, 25.0.0, 25.0.1, 25.0.2, 25.0.3, 26.0.1, 26.0.2, 26.0.3, 27.0.0, 27.0.3, 28.0.1 API Levels: 19, 22, 23, 24, 25, 26, 27 IDEs: Android Studio: 3.1 AI-173.4907809 Xcode: 9.4.1/9F2000 - /usr/bin/xcodebuild npmPackages: react: 16.5.0 => 16.5.0 react-native: ^0.57.2 => 0.57.2 npmGlobalPackages: react-native-create-library: 3.1.2
Description
super expression must either be null or a function when I use 'class ImageView extends Image'.The same problem with 'extends Text'
Reproducible Demo
export default class ImageView extends Image { constructor(props) { super(props); } render() { ... return super.render(); } }
deathnopool and linxiaoru