[ABANDONED] React/Redux front end for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
708 B

import React, { FC } from 'react'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faCircleNotch } from '@fortawesome/free-solid-svg-icons'
import { useTheme } from '../../hooks'
import Title from '../../components/title'
import Section from '../../components/section'
const Loading: FC = () => {
const theme = useTheme()
return (
<div>
<Section>
<Title>Loading...</Title>
<div style={{ color: theme.secondary, padding: '5rem', textAlign: 'center' }}>
<FontAwesomeIcon icon={faCircleNotch} spin size="4x" />
</div>
</Section>
</div>
)
}
export default Loading