测试博客文章
 · 阅读需 1 分钟
这是一篇博客的测试文章。
提示
使用 React 的强大功能来创建交互式博客文章。
export const Highlight = ({children, color}) => (
  <span
    style={{
      backgroundColor: color,
      borderRadius: '20px',
      color: '#fff',
      padding: '10px',
      cursor: 'pointer',
    }}
    onClick={() => {
      alert(`${children}`)
    }}>
    {children}
  </span>
);
