writekit/frontends/studio/src/stores/analytics.ts

11 lines
272 B
TypeScript
Raw Normal View History

2026-01-09 00:16:46 +02:00
import { atom } from 'nanostores'
import { createFetcherStore } from './fetcher'
import type { AnalyticsSummary } from '../types'
export const $days = atom(30)
export const $analytics = createFetcherStore<AnalyticsSummary>([
'/api/studio/analytics?days=',
$days,
])