import React from "react"; import { StashService } from "src/core/StashService"; import { FormattedMessage, FormattedNumber } from "react-intl"; import { LoadingIndicator } from "src/components/Shared"; export const Stats: React.FC = () => { const { data, error, loading } = StashService.useStats(); if (loading || !data) return ; if (error) return error.message; return (
); };