import React from 'react';
import { ErrorBlock } from '../../../common/components/error-block';
import { SBox } from '../../../common/s-components/layout/s-box';

type TProps = {};

export const Error: React.FC<TProps> = () => {
  return (
    <SBox mb={20}>
      <ErrorBlock message="Data failed to load." height={232} />
    </SBox>
  );
};
