Something really important to us was taken away... but now.. it's back and can do one or two more things! What a deal!
Demo: https://codesandbox.io/s/vj29v2vpl7
npm i -save react-blink-tag
-
Import the blink tag
import Blink from 'react-blink-tag'
-
Options
fade
<Blink fade>Geocities!</Blink>
speed ('fast' or 'slow')
<Blink speed="slow">Geocities!</Blink>
- Render it with pride!
//.......
function App() {
return (
<div className="App">
<h1>
<Blink>Geocities!</Blink>
</h1>
</div>
);
}
//........