📜  prism react 渲染器 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:27.245000             🧑  作者: Mango

代码示例2
jsximport React from 'react'import styled from 'styled-components'import { AiOutlineLike } from 'react-icons/ai'
const LikeButton = () => {  const [value, setValue] = React.useState(0)  return (          

Liked the post?
Click thumbs up few times

+{value}
)}