8 lines
272 B
TypeScript
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>;
|
|
}
|