proton-native/docs/component_APIs/app.md

660 B

App

The app is the container for the entire program and holds Windows and Menus.

import React, { Component } from 'react';

import { render, Window, App } from 'proton-native';

class Example extends Component {
  render() {
    return (
      <App>
        <Window title="Example" size={{ w: 500, h: 500 }} />
      </App>
    );
  }
}

render(<Example />);

Props

Reference

onShouldQuit

Called when the quit menu item is called, right before the entire app quits.

Type Required Default
function() No () => {}