Last active
August 29, 2015 14:25
-
-
Save christopherdro/1e4706120169404e3028 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// NTRCTProfileTable.h | |
// Nametag | |
// | |
// Created by Christopher on 7/20/15. | |
// Copyright (c) 2015 650 Industries. All rights reserved. | |
// | |
#import "RCTViewManager.h" | |
@interface RCTProfileTableManager : RCTViewManager | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// NTRCTProfileTable.m | |
// Nametag | |
// | |
// Created by Christopher on 7/20/15. | |
// Copyright (c) 2015 650 Industries. All rights reserved. | |
// | |
#import "RCTProfileTableManager.h" | |
#import "RCTProfileTable.h" | |
@implementation RCTProfileTableManager | |
RCT_EXPORT_MODULE(); | |
- (UIView *)view | |
{ | |
return [[RCTProfileTable alloc] init]; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment