undefined is not an object (evaluating 'RCTWebSockerManager.connect') -- React Native
So I figured it out. If you're having this issue, fixing my podfile to this worked. Delete your Pods/ directory and then run pod install again with the following podfile. Restart the dev server for good measure too.
pod 'FBSDKShareKit'
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'React'
pod 'React', :subspecs => [
'RCTText',
'RCTImage',
'RCTNetwork',
'RCTWebSocket'
]