Babel
What is Babel
import React from 'react';
function App() {
return <h1>Hello World</h1>;
}import React from 'react';
function App() {
return React.createElement('h1', null, 'Hello world');
}Last updated
import React from 'react';
function App() {
return <h1>Hello World</h1>;
}import React from 'react';
function App() {
return React.createElement('h1', null, 'Hello world');
}Last updated