feat: added seed

This commit is contained in:
2023-07-05 22:43:48 -03:00
parent 2d0f960d49
commit 201f55a1b8
22 changed files with 204 additions and 34 deletions

View File

@@ -1,12 +1,12 @@
/* eslint-disable @typescript-eslint/ban-types */
import { create } from 'zustand';
import { SPEND_SCREEN_ID, SPEND_SCREEN_NAME } from 'utils/constants';
import { type UserSpendData, type Tab } from '@/lib/types';
import { SPEND_SCREEN_ID, SPEND_SCREEN_NAME } from '@/lib/constants';
interface appStore {
tab: Tab;
setTab: (props: Tab) => void;
setUserSpendData: (props: UserSpendData[]) => void;
tab: Tab;
userSpendData: UserSpendData[];
}