Initial commit

This commit is contained in:
Ben Alpert
2015-01-29 17:10:49 -08:00
commit a15603d8f1
382 changed files with 39183 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
/**
* Copyright 2004-present Facebook. All Rights Reserved.
*
* @providesModule RKRawText
* @typechecks static-only
*/
"use strict";
var ReactIOSViewAttributes = require('ReactIOSViewAttributes');
var createReactIOSNativeComponentClass = require('createReactIOSNativeComponentClass');
var RKRawText = createReactIOSNativeComponentClass({
validAttributes: {
text: true,
},
uiViewClassName: 'RCTRawText',
});
module.exports = RKRawText;