Files
solana/explorer/src/providers/stats/index.tsx

8 lines
272 B
TypeScript

import React from "react";
import { SolanaClusterStatsProvider } from "./solanaClusterStats";
type Props = { children: React.ReactNode };
export function StatsProvider({ children }: Props) {
return <SolanaClusterStatsProvider>{children}</SolanaClusterStatsProvider>;
}