saf + sqlite

This commit is contained in:
m
2026-09-09 22:31:20 +02:00
parent b671a222a5
commit d839bbdf70
12 changed files with 351 additions and 83 deletions
+2 -8
View File
@@ -1,13 +1,7 @@
import { createContext, useCallback, useContext, useEffect, useMemo, useState } from 'react';
import { createContext, useContext, useEffect, useMemo, useState } from 'react';
import type { ReactNode } from 'react';
import { useSyncDevice } from '../features/syncDevice';
export type User = {
};
type AuthContextValue = {
user: User | null;
};
import type { AuthContextValue, User } from './AuthContext.types';
const AuthContext = createContext<AuthContextValue | null>(null);
+5
View File
@@ -0,0 +1,5 @@
export type User = {};
export type AuthContextValue = {
user: User | null;
};