schiehll / react-alert

alerts for React
MIT License
608 stars 98 forks source link

Usage example code mistake #62

Closed ymkz closed 6 years ago

ymkz commented 6 years ago

README.md Example section code has mistake.

from

const options = {
  position: 'bottom center',
  timeout: 5000,
  offset: 30, // number is invalid
  transition: 'scale'
}

to

const options = {
  position: 'bottom center',
  timeout: 5000,
  offset: '30px', // PropTypes.string
  transition: 'scale'
}

thank you team!

schiehll commented 6 years ago

Oh you are right! Thank you for pointing it out! Just fixed it.