UNPKG
react-typist-updated
Version:
latest (2.0.6)
2.0.6
2.0.5
2.0.4
Typing animations with React
github.com/bkdev98/react-typist
bkdev98/react-typist
react-typist-updated
/
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
;