diff --git a/Libraries/Components/Touchable/TouchableWithoutFeedback.js b/Libraries/Components/Touchable/TouchableWithoutFeedback.js index 8c04c9457..96bcb6bf9 100755 --- a/Libraries/Components/Touchable/TouchableWithoutFeedback.js +++ b/Libraries/Components/Touchable/TouchableWithoutFeedback.js @@ -29,6 +29,10 @@ var PRESS_RETENTION_OFFSET = {top: 20, left: 20, right: 20, bottom: 30}; * Do not use unless you have a very good reason. All the elements that * respond to press should have a visual feedback when touched. This is * one of the primary reason a "web" app doesn't feel "native". + * + * > **NOTE**: TouchableWithoutFeedback supports only one child + * > + * > If you wish to have several child components, wrap them in a View. */ var TouchableWithoutFeedback = React.createClass({ mixins: [TimerMixin, Touchable.Mixin],