16 lines
366 B
Java
Raw Normal View History

package <%= package %>;
import com.facebook.react.ReactActivity;
public class MainActivity extends ReactActivity {
2015-09-17 12:09:19 +01:00
/**
* Returns the name of the main component registered from JavaScript.
* This is used to schedule rendering of the component.
*/
@Override
protected String getMainComponentName() {
return "<%= name %>";
}
}