[SyncDiff] [react_native] Add more oss examples

This commit is contained in:
Andrei Coman 2015-08-22 03:30:10 -07:00
parent 8cc7f7f99a
commit 127b3292c1
2 changed files with 3 additions and 2 deletions

View File

@ -138,11 +138,11 @@ var styles = StyleSheet.create({
},
});
exports.title = 'onLayout';
exports.title = 'Layout Events';
exports.description = 'Layout events can be used to measure view size and position.';
exports.examples = [
{
title: 'onLayout',
title: 'LayoutEventExample',
render: function(): ReactElement {
return <LayoutEventExample />;
},

View File

@ -27,6 +27,7 @@ var {
} = React;
exports.displayName = (undefined: ?string);
exports.description = 'Touchable and onPress examples';
exports.title = '<Touchable*> and onPress';
exports.examples = [
{