Edit README

This commit is contained in:
2026-01-09 20:38:53 +03:00
parent 7a906fa824
commit 57a825b866
16 changed files with 2996 additions and 20 deletions
+1 -6
View File
@@ -1,10 +1,5 @@
import { create } from 'zustand';
interface User {
id: string;
email: string;
username: string;
}
import type { User } from '../services/userService';
interface AuthStore {
user: User | null;