This is just a technology testing project based on Create React App and TailwindCSS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
331B

  1. import React from 'react'
  2. function Link(props) {
  3. const { action, children, className, ...rest } = props
  4. const classNames = ['text-primary-dark cursor-pointer hover:underline', className].join(' ');
  5. return (
  6. <span onClick={action} className={classNames} {...rest}>{children}</span>
  7. )
  8. }
  9. export default Link