Skip to content

Instantly share code, notes, and snippets.

@christopherdro
Last active August 29, 2015 14:25
Show Gist options
  • Save christopherdro/1e4706120169404e3028 to your computer and use it in GitHub Desktop.
Save christopherdro/1e4706120169404e3028 to your computer and use it in GitHub Desktop.
//
// 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
//
// 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