refactor all components and isolated from ART dependency

This commit is contained in:
Horcrux
2016-04-20 00:52:59 +08:00
parent c8a04c3d28
commit d700ca5493
81 changed files with 2993 additions and 1437 deletions
+26
View File
@@ -0,0 +1,26 @@
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import "RNSVGPathManager.h"
#import "RNSVGPath.h"
#import "RCTConvert+RNSVG.h"
@implementation RNSVGPathManager
RCT_EXPORT_MODULE()
- (RNSVGRenderable *)node
{
return [RNSVGPath new];
}
RCT_EXPORT_VIEW_PROPERTY(d, CGPath)
@end