[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

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. import React, { FC } from 'react'
  2. import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
  3. import { faCircleNotch } from '@fortawesome/free-solid-svg-icons'
  4. import { useTheme } from '../../hooks'
  5. import Title from '../../components/title'
  6. import Section from '../../components/section'
  7. const Loading: FC = () => {
  8. const theme = useTheme()
  9. return (
  10. <div>
  11. <Section>
  12. <Title>Loading...</Title>
  13. <div style={{ color: theme.secondary, padding: '5rem', textAlign: 'center' }}>
  14. <FontAwesomeIcon icon={faCircleNotch} spin size="4x" />
  15. </div>
  16. </Section>
  17. </div>
  18. )
  19. }
  20. export default Loading