Skip to content

Instantly share code, notes, and snippets.

@tiagobento2
Last active May 9, 2019 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tiagobento2/2b947071f96bc70c694b84e5ea2dd033 to your computer and use it in GitHub Desktop.
Save tiagobento2/2b947071f96bc70c694b84e5ea2dd033 to your computer and use it in GitHub Desktop.
import * as React from "react";
import * as AppFormer from "appformer-js";
export class MyScreen extends AppFormer.Screen {
private screen: MyReactComponent;
constructor() {
super("my-screen");
this.af_isReact = true;
this.af_componentTitle = "MyScreen title";
}
public af_onOpen(): void {
this.screen.fetchDataAndUpdate();
}
public af_componentRoot(): AppFormer.Element {
return <MyReactComponent exposing={self => (this.screen = self)} />;
}
}
AppFormer.registerScreen(new MyScreen());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment