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

8 lines
244 B
TypeScript
Raw Normal View History

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