This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react' | |
| import RX from 'reactxp' | |
| export default class TextAreaMultiFocus extends RX.Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| field1: '', | |
| field2: '' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * This file demonstrates a basic ReactXP app. | |
| */ | |
| import React from 'react'; | |
| import RX from 'reactxp'; | |
| import ToggleSwitch from './ToggleSwitch'; | |
| const styles = { | |
| container: RX.Styles.createViewStyle({ |
OlderNewer