UNPKG

react-native-macos

Version:

[Microsoft Fork] A framework for building native apps using React

53 lines (47 loc) 1.06 kB
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format * @flow strict-local */ 'use strict'; import React from 'react'; import {NativeModules, Button} from 'react-native'; const {CrashyCrash} = NativeModules; exports.displayName = (undefined: ?string); exports.framework = 'React'; exports.title = 'Crash'; exports.description = 'Crash examples.'; exports.examples = [ { title: 'JS crash', render() { return ( <Button title="JS crash" onPress={() => { const a = {}; const b = a.w.q; // js crash here console.log(b); }} /> ); }, }, { title: 'Native crash', render() { return ( <Button title="Native crash" onPress={() => { CrashyCrash.letsCrash(); }} /> ); }, }, ];