import React from 'react'; import styled from 'styled-components'; import { Flex } from 'reflexbox/styled-components'; import { spin } from '../helpers/animations'; const Icon = styled.img` display: block; width: 28px; height: 28px; animation: ${spin} 1s linear infinite; `; const pageLoading = () => ( ); export default pageLoading;