import React from 'react'; import LoadIn from "../../components/animation/LoadIn"; import {Col, Row} from "react-bootstrap"; import {useParams} from "react-router-dom"; import {useDataRequest} from "../../hooks/dataFetchHook"; import {fetchPerformanceOverview} from "../../service/serverService"; import PerformanceGraphsCard from "../../components/cards/server/graphs/PerformanceGraphsCard"; import PerformanceInsightsCard from "../../components/cards/server/insights/PerformanceInsightsCard"; import {ErrorViewCard} from "../ErrorView"; import PerformanceAsNumbersCard from "../../components/cards/server/tables/PerformanceAsNumbersCard"; const ServerPerformance = () => { const {identifier} = useParams(); const {data, loadingError} = useDataRequest(fetchPerformanceOverview, [identifier]); return (
{loadingError ? : } {loadingError ? : }
) }; export default ServerPerformance