icons list and create group icon

This commit is contained in:
hamid zarghami
2025-12-16 09:42:33 +03:30
parent 63856bdf89
commit e7d775237d
10 changed files with 207 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
import { type FC } from 'react'
import { useGetIcons } from './hooks/useIconData'
const IconsList: FC = () => {
const { data: icons, isLoading, refetch } = useGetIcons()
return (
<div>IconsList</div>
)
}
export default IconsList