import React from 'react'; import { IOwnProps } from './types'; export default ({ isLoading }: IOwnProps) => (isLoading ? (
) : null);