import React from 'react';
import { SToastBaseText } from '../../../../s-components/s-toast-base-text';

type TProps = {};

export const PartialLoadingError: React.FC<TProps> = () => {
  return (
    <SToastBaseText>
      Partial data failed to load.{'\n'}Try refreshing the page.
    </SToastBaseText>
  );
};
