123456789101112131415161718 |
- //
- // RNNSideMenuLeftVC.h
- // ReactNativeNavigation
- //
- // Created by Ran Greenberg on 09/02/2017.
- // Copyright © 2017 Wix. All rights reserved.
- //
-
- #import <UIKit/UIKit.h>
-
- @interface RNNSideMenuLeftVC : UIViewController
-
- @property (readonly) UIViewController* child;
-
- -(instancetype)initWithChild:(UIViewController*)child;
-
- @end
|