HamzaAhmed
HamzaAhmed

Reputation: 109

Is it necessary to run react project without babel?

Is it necessary to configure React Project without babel which is a transpiler for JavaScript (turning ES6 into code that runs in your browser) ? or with babel as es6 is necessary to use in React projects?

Upvotes: 1

Views: 497

Answers (1)

Bojan Ivanac
Bojan Ivanac

Reputation: 1180

Well, Babel is not really needed but writing React apps without JSX is not something a sane person would do.

Writing React without Babel is not viable honestly.

Upvotes: 1

Related Questions