developer239/react-apollo-graphql

View on GitHub
src/components/Loader/index.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react'
import { Spin } from 'antd'

export const COMPONENT_LOADER_TEST_ID = 'loader-component'

export const Loader = () => (
  <Spin data-testid={COMPONENT_LOADER_TEST_ID} size="large" />
)