mirror of
https://github.com/status-im/react-native-camera-kit.git
synced 2025-02-28 23:50:47 +00:00
23 lines
309 B
Mathematica
23 lines
309 B
Mathematica
|
//
|
||
|
// CKCameraManager.m
|
||
|
// ReactNativeCameraKit
|
||
|
//
|
||
|
// Created by Ran Greenberg on 30/05/2016.
|
||
|
// Copyright © 2016 Wix. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "CKCameraManager.h"
|
||
|
#import "CKCamera.h"
|
||
|
|
||
|
@implementation CKCameraManager
|
||
|
|
||
|
RCT_EXPORT_MODULE()
|
||
|
|
||
|
|
||
|
- (UIView *)view {
|
||
|
return [CKCamera new];
|
||
|
}
|
||
|
|
||
|
|
||
|
@end
|