UNPKG
@canner/react-typist
Version:
latest (2.1.0)
2.1.0
2.0.6
2.0.5
2.0.4
Typing animations with React
github.com/jstejada/react-typist
jstejada/react-typist
@canner/react-typist
/
src
/
Delay.jsx
11 lines
(7 loc)
•
180 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
'react'
;
import
PropTypes
from
'prop-types'
;
const
Delay
= (
) =>
<
noscript
/>
;
Delay
.
propTypes
= {
ms
:
PropTypes
.
number
.
isRequired
, };
export
default
Delay
;