JSFiddle - React, Tailwind, and code Playground
by igalst
Babel + JSX
import { Button as SemanticButton } from 'semantic-ui-react';
const Button = ({ url, ...nextProps }) => {
return <SemanticButton href={url} {...nextProps}/>
}
export default Button;