How to use the reactxp.UserInterface function in reactxp

To help you get started, we’ve selected a few reactxp examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github microsoft / reactxp / samples / ImageList / src / App.tsx View on Github external
init() {
        RX.App.initialize(DEBUG, DEV);
        RX.UserInterface.setMainView(this._renderRootView());
    }
github microsoft / reactxp / samples / hello-world-js / src / App.js View on Github external
init() {
        RX.App.initialize(DEBUG, DEV);
        RX.UserInterface.setMainView(this._renderRootView());
    }
github microsoft / reactxp / samples / hello-world / src / App.tsx View on Github external
init() {
        RX.App.initialize(DEBUG, DEV);
        RX.UserInterface.setMainView(this._renderRootView());
    }
github colmbrady / lottie-reactxp / stories / index.js View on Github external
const RXDecorator = (storyFn) => {
  if (document) {
    document.getElementById('root').className = 'app-container';
  }
  const story = storyFn();
  RX.UserInterface.setMainView(story);
  return story;
};
github a-tarasyuk / create-rx-app / template / javascript / src / index.js View on Github external
import React from 'react';
import RX from 'reactxp';
import { App } from './App';
import { DEBUG, DEV } from './config';

RX.App.initialize(DEBUG, DEV);
RX.UserInterface.setMainView();
github a-tarasyuk / create-rx-app / template / typescript / src / index.tsx View on Github external
import React from 'react';
import RX from 'reactxp';
import { App } from './App';
import { DEBUG, DEV } from './config';

RX.App.initialize(DEBUG, DEV);
RX.UserInterface.setMainView();

reactxp

Cross-platform abstraction layer for writing React-based applications a single time that work identically across web, React Native, and Electron distribution

MIT
Latest version published 5 years ago

Package Health Score

59 / 100
Full package analysis