UNPKG
react-typist
Version:
latest (2.0.5)
next (2.0.5)
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
0.3.0
0.2.0
0.1.3
0.1.2
0.1.0
Typing animations with React
github.com/jstejada/react-typist
jstejada/react-typist
react-typist
/
src
/
Delay.jsx
13 lines
(8 loc)
•
212 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
React
from
'react'
;
import
PropTypes
from
'prop-types'
;
const
Delay
= (
) =>
<
noscript
/>
;
Delay
.
componentName
=
'Delay'
;
Delay
.
propTypes
= {
ms
:
PropTypes
.
number
.
isRequired
, };
export
default
Delay
;