12 lines
302 B
Haxe
12 lines
302 B
Haxe
import react.ReactComponent;
|
|
import react.router.Route.RouteRenderProps;
|
|
|
|
@:expose('default')
|
|
class MyBundle extends ReactComponentOfProps<RouteRenderProps> {
|
|
// If you want to execute code when this bundle is _first_ loaded:
|
|
public static function onLoad() {
|
|
// ...
|
|
}
|
|
|
|
// ...
|
|
} |