Mashiane Expert Licensed User Longtime User Aug 1, 2019 #1 Hi there I'm curious about ReactJS due to some possible implementations I might need to look at. I read that one can use JSX, but for pete's sake looking at this... B4X: import React, { Component } from 'react'; class App extends Component{ render(){ return( <div> <h1>Hello World</h1> </div> ); } } export default App; and also this... B4X: import React from 'react'; import ReactDOM from 'react-dom'; import App from './App.js'; ReactDOM.render(<App />, document.getElementById('app')); One's mind cracks.. Could something like this be possible?
Hi there I'm curious about ReactJS due to some possible implementations I might need to look at. I read that one can use JSX, but for pete's sake looking at this... B4X: import React, { Component } from 'react'; class App extends Component{ render(){ return( <div> <h1>Hello World</h1> </div> ); } } export default App; and also this... B4X: import React from 'react'; import ReactDOM from 'react-dom'; import App from './App.js'; ReactDOM.render(<App />, document.getElementById('app')); One's mind cracks.. Could something like this be possible?
Mashiane Expert Licensed User Longtime User Aug 21, 2019 #2 The approach above uses JSX, the most used methodology to create Facebook React Apps. Following a DOM based approach is also possible, we are exploring this here. BANanoReact - A community project Upvote 0
The approach above uses JSX, the most used methodology to create Facebook React Apps. Following a DOM based approach is also possible, we are exploring this here. BANanoReact - A community project