first commit

This commit is contained in:
Samandar Turgunboyev
2025-11-25 20:28:59 +05:00
parent 2c9a9c76e6
commit 1972d9e6d4
101 changed files with 9861 additions and 48 deletions

12
src/pages/Objects.tsx Normal file
View File

@@ -0,0 +1,12 @@
import ObjectList from "@/features/objects/ui/ObjectList";
import SidebarLayout from "@/SidebarLayout";
const Objects = () => {
return (
<SidebarLayout>
<ObjectList />
</SidebarLayout>
);
};
export default Objects;