B4J Question [BANano] [SOLVED] How can I BANano ReactJS?

Mashiane

Expert
Licensed User
Longtime User
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?
 
Top