1.0.1 • Published 4 years ago

react-scrambled-email v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

react-scrambled-email

Bot proof your email links. The ScrambledEmail component will keep bots from stealing your email, but when a user clicks the link they will get the correct email.

Installation

yarn add react-scrambled-email

Usage

import React from 'react'
import { ScambledEmail } from 'react-scrambled-email'

export const App = () => {
  return (
    <span>
      Send me an
      <ScrambledEmail email="me@myemail.com" text="email" />
    </span>
  )
}