react if 显示元素写法
时间: 2023-06-12 22:06:02 浏览: 148
浅谈React碰到v-if
5星 · 资源好评率100%
React中显示元素的写法有两种:
1. 使用JSX语法:
```jsx
const element = <h1>Hello, world!</h1>;
```
2. 使用React.createElement方法:
```jsx
const element = React.createElement('h1', null, 'Hello, world!');
```
两种写法最终都会被转换成React元素并渲染到页面上。
阅读全文