microsoft / TypeScript-React-Native-Starter

A starter template for TypeScript and React Native with a detailed README describing how to use the two together.
MIT License
1.91k stars 210 forks source link

Use react-native jsx preset instead of react #44

Closed yedidyak closed 5 years ago

henrikra commented 6 years ago

What is the difference?

orta commented 5 years ago

TIL'd - nice 👍

const dom = <View text="hello world" />;

// =

// React
const dom = React.createElement(View, { text: "hello world" });

// React Native
const dom = <View text="hello world"/>;