mirror of
https://github.com/kusti8/proton-native.git
synced 2026-05-15 22:02:24 -06:00
660 B
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 | () => {} |