2015-04-29 15:28:18 -07:00
|
|
|
/**
|
|
|
|
* 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 "ARTGroupManager.h"
|
|
|
|
|
|
|
|
#import "ARTGroup.h"
|
2016-04-11 19:18:50 -07:00
|
|
|
#import "RCTConvert+ART.h"
|
2015-04-29 15:28:18 -07:00
|
|
|
|
|
|
|
@implementation ARTGroupManager
|
|
|
|
|
|
|
|
RCT_EXPORT_MODULE()
|
|
|
|
|
|
|
|
- (ARTNode *)node
|
|
|
|
{
|
2015-11-02 07:58:47 -08:00
|
|
|
return [ARTGroup new];
|
2015-04-29 15:28:18 -07:00
|
|
|
}
|
|
|
|
|
2016-04-11 19:18:50 -07:00
|
|
|
RCT_EXPORT_VIEW_PROPERTY(clipping, CGRect)
|
|
|
|
|
2015-04-29 15:28:18 -07:00
|
|
|
@end
|