mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1// TODO
2import React from 'react'
3import {RootStoreModel} from 'state/models/root-store'
4
5const _analytics = {
6 screen(_name: string) {},
7 track(_name: string, _opts: any) {},
8}
9export const track = _analytics.track
10export function useAnalytics() {
11 return _analytics
12}
13
14export function init(_store: RootStoreModel) {}
15
16export function Provider({children}: React.PropsWithChildren<{}>) {
17 return children
18}