import { PureComponent } from 'react'; import { Spinner } from '../'; export class SpinnerExample extends PureComponent { static displayName = 'Spinner'; render() { return (

Please exercise caution in deciding to use a spinner in your component. A lone spinner is a poor user-experience and conveys little context to what the user should expect from the page. Refer to{ ' ' } the Reactivity and Loading States guide { ' ' } for more information on building fast interfaces and making the most of data already available to use.

); } }