DEV Community

Discussion on: React Without JSX, t7 To The Rescue!

Collapse
 
marcoms profile image
Marco Scannadinari

The backticks and ${} syntax are natively part of ES2015, defined as 'template literals'. t7 uses these so that you don't need to use an additional preprocessor/transpiler

Collapse
 
josegonz321 profile image
Jose Gonzalez

Ah, now that makes sense.

I suppose it's a trade off at end of day. Thanks Marco for your clarification.