add validation and basic api && change design sidebar

This commit is contained in:
ehsanahmadi456
2025-04-01 15:38:07 +03:30
parent b09957f97c
commit 13a9de2438
8 changed files with 41 additions and 12 deletions
+7
View File
@@ -0,0 +1,7 @@
import Cookies from "universal-cookie";
const cookies = new Cookies();
const removeToken = () => cookies.remove("token", { path: "/" });
export { removeToken };