migrate to radix ui, make header draft

This commit is contained in:
Daniil
2026-01-20 00:50:12 +03:00
parent 4688f65c5a
commit 3dfb9453ec
62 changed files with 1757 additions and 165 deletions
+5
View File
@@ -0,0 +1,5 @@
import type { AppDispatch } from "@shared/store"
import { useDispatch } from "react-redux"
export const useAppDispatch = useDispatch.withTypes<AppDispatch>()
+5
View File
@@ -0,0 +1,5 @@
import type { RootState } from "@shared/store"
import { useSelector } from "react-redux"
export const useAppSelector = useSelector.withTypes<RootState>()