Initial public release
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import React from 'react';
|
||||
import { useGitPolling } from '@/hooks/useGitPollingHook';
|
||||
|
||||
/**
|
||||
* Component wrapper for useGitPolling - use this inside RuntimeAPIProvider
|
||||
*/
|
||||
export function GitPollingProvider({ children }: { children: React.ReactNode }) {
|
||||
useGitPolling();
|
||||
return <>{children}</>;
|
||||
}
|
||||
Reference in New Issue
Block a user