13 lines
235 B
TypeScript
13 lines
235 B
TypeScript
import ObjectList from "@/features/objects/ui/ObjectList";
|
|
import SidebarLayout from "@/SidebarLayout";
|
|
|
|
const Objects = () => {
|
|
return (
|
|
<SidebarLayout>
|
|
<ObjectList />
|
|
</SidebarLayout>
|
|
);
|
|
};
|
|
|
|
export default Objects;
|