Error add resource through command
import { IResourceComponentsProps } from "@refinedev/core";
import { AntdInferencer } from "@refinedev/inferencer/antd";
export const PatientList: React.FC<IResourceComponentsProps> = () => {
return <AntdInferencer />;
};
This show: Cannot find module '@refinedev/inferencer/antd' or its corresponding type declarations.ts(2307)
After I use npm run refine create-resource patient
import { AntdInferencer } from "@refinedev/inferencer/antd";
export const PatientList: React.FC<IResourceComponentsProps> = () => {
return <AntdInferencer />;
};
This show: Cannot find module '@refinedev/inferencer/antd' or its corresponding type declarations.ts(2307)
After I use npm run refine create-resource patient
