remove unecessary

This commit is contained in:
cupcakearmy 2020-01-05 17:34:49 +01:00
parent 3a2ee3cd7c
commit 7b5f7cfe86
2 changed files with 9 additions and 12 deletions

View File

@ -1,8 +0,0 @@
import React, { Suspense } from 'react'
const Suspend: (C: React.ComponentType) => React.ComponentType = (C) => () => {
return <Suspense fallback={<span>...</span>} children={<C/>}/>
}
export default Suspend

View File

@ -1,5 +1,10 @@
import React, { useEffect, useRef, useState } from 'react'
import LetterAnimation from '../Components/LetterAnimation'
import LetterAnimation from '../components/LetterAnimation'
import '../styles/Letters.styl'
type Pair = [string, string]
@ -16,7 +21,6 @@ const Letters: React.FC = React.memo(() => {
const [index, setIndex] = useState<number>(0)
const wrapper = useRef<HTMLElement>(null)
useEffect(() => {
setTimeout(
() => setIndex((index < pairs.length - 1) ? index + 1 : 0),
@ -25,8 +29,9 @@ const Letters: React.FC = React.memo(() => {
}, [index])
return <span id={'letters-wrapper'} ref={wrapper}>
<LetterAnimation text={pairs[index][0] + '.'}/>
<LetterAnimation text={pairs[index][1] + '.'} delay={500}/>
<LetterAnimation text={pairs[index][0] + '.'} />
<br />
<LetterAnimation text={pairs[index][1] + '.'} delay={500} />
</span>
})