package com.reactnativesharereceiver;

import com.facebook.react.ReactActivity;

/**
 * Activity for receiving shares from other apps.
 */
public class ShareReceiverActivity extends ReactActivity {
    /**
     * Returns the name of the share receiver component registered from Javascript. This is used to
     * schedule rendering of the component.
     */
    @Override
    protected String getMainComponentName() {
        return "ShareReceiver";
    }
}
