import { atom } from 'nanostores' import { createFetcherStore } from './fetcher' import type { AnalyticsSummary } from '../types' export const $days = atom(30) export const $analytics = createFetcherStore([ '/api/studio/analytics?days=', $days, ])