# ion-infinite-scroll-content The `ion-infinite-scroll-content` component is the default child used by the `ion-infinite-scroll`. It displays an infinite scroll spinner that looks best based on the platform and changes the look depending on the infinite scroll's state. The default spinner can be changed and text can be added by setting the `loadingSpinner` and `loadingText` properties. ## React The `ion-infinite-scroll-content` component is not supported in React. ## Usage ### Angular ```html ``` ### Javascript ```html ``` ### Stencil ```tsx import { Component, h } from '@stencil/core'; @Component({ tag: 'infinite-scroll-content-example', styleUrl: 'infinite-scroll-content-example.css' }) export class InfiniteScrollContentExample { render() { return [ ]; } } ``` ### Vue ```html