How to use the reactxp.App 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 / 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 colmbrady / lottie-reactxp / .storybook / web / config.js View on Github external
import RX from 'reactxp';
import { configure } from '@storybook/react';

function loadStories() {
  require('../../stories');
}

RX.App.initialize(true, true);

configure(loadStories, module);
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 4 years ago

Package Health Score

59 / 100
Full package analysis