// @flow import * as React from 'react'; import { Loading } from 'src/components/loading'; import { HoverWrapper, ProfileCard } from './style'; type Props = { ref?: (?HTMLElement) => void, style: CSSStyleDeclaration, }; export default class LoadingHoverProfile extends React.Component { render() { const { ref, style } = this.props; return ( ); } }