📜  反应 html 解析器 - Html 代码示例

📅  最后修改于: 2022-03-11 14:52:59.300000             🧑  作者: Mango

代码示例1
import React from 'react';function transform(node) {  if (node.type === 'tag' && node.name === 'b') {    return 
This was a bold tag
;  }}