Skip to main content
👀 Interested in the latest enterprise backend features of refine? 👉 Join now and get early access!
Version: 4.xx.xx
Source Code

<AutoSaveIndicator>

<AutoSaveIndicator> component from refine for Material UI can be used to communicate auto-save status to the user.

Simple usage is as follows:

import { AutoSaveIndicator, useForm } from "@refinedev/mui";

const MyComponent = () => {
const { refineCore: { autoSaveProps } } = useForm({
refineCoreProps: {
autoSave: {
enabled: true,
},
}
});

return (
<AutoSaveIndicator {...autoSaveProps}/>
);
};

API Reference​

Properties​