feat: add basic webui
This commit is contained in:
12
packages/analytics/index.tsx
Normal file
12
packages/analytics/index.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import type { ReactNode } from 'react';
|
||||
import { AnalyticsImplProvider } from './client';
|
||||
|
||||
type AnalyticsProviderProps = {
|
||||
readonly children: ReactNode;
|
||||
};
|
||||
|
||||
export const AnalyticsProvider = ({ children }: AnalyticsProviderProps) => (
|
||||
<AnalyticsImplProvider>
|
||||
{children}
|
||||
</AnalyticsImplProvider>
|
||||
);
|
||||
Reference in New Issue
Block a user