1// Copyright 2015-present 650 Industries. All rights reserved.
2
3#import <EXDevMenu/DevMenuLoadingView.h>
4
5#if __has_include(<React/RCTDevLoadingViewProtocol.h>)
6
7@implementation DevMenuLoadingView
8
9+ (NSString *)moduleName
10{
11  return @"DevLoadingView";
12}
13
14+ (void)setEnabled:(BOOL)enabled {}
15- (void)showMessage:(NSString *)message color:(UIColor *)color backgroundColor:(UIColor *)backgroundColor {}
16- (void)showWithURL:(NSURL *)URL {}
17- (void)updateProgress:(RCTLoadingProgress *)progress {}
18- (void)hide {}
19
20@end
21
22#endif
23