UNPKG

react-native-scrollable-tab-view

Version:

[![npm version](https://badge.fury.io/js/react-native-scrollable-tab-view.svg)](https://badge.fury.io/js/react-native-scrollable-tab-view)

15 lines (12 loc) 271 B
const React = require('react'); const ReactNative = require('react-native'); const { TouchableOpacity, View, } = ReactNative; const Button = (props) => { return <TouchableOpacity {...props}> {props.children} </TouchableOpacity>; }; module.exports = Button;