AntdInferencer not working even adjusting the new API
return <AntdInferencer resource="blogs" action="list" />;

<AntdInferencer> component to generate a sample list view for your resources. However, the example provided in the extracts does not include the resource and action props. Here's the example from the extracts:<AntdInferencer> component with the resource and action props, you can modify the example like this:Note: you can ask me a follow up question by @ mentioning me again <Refine> component?
<AntdInferencer><AntdInferencer>resourceresourceactionaction<Refine>import { Refine } from "@refinedev/core";
import { Layout } from "@refinedev/antd";
import routerProvider from "@refinedev/react-router-v6";
import dataProvider from "@refinedev/simple-rest";
import { BrowserRouter, Routes, Route, Outlet } from "react-router-dom";
import { AntdInferencer } from "@refinedev/inferencer/antd";
const API_URL = "https://api.fake-rest.refine.dev";
const App: React.FC = () => {
return (
<BrowserRouter>
<Refine
routerProvider={routerProvider}
dataProvider={dataProvider(API_URL)}
resources={[
{
name: "samples",
list: "/samples",
},
]}
>
<Routes>
<Route
element={
<Layout>
<Outlet />
</Layout>
}
>
<Route path="/samples" element={<AntdInferencer />} />
</Route>
</Routes>
</Refine>
</BrowserRouter>
);
};<Route path="/blogs" element={<AntdInferencer resource="blogs" action="list" />} />