Skip to main content
🧙‍♂️ refine grants your wishes! Please give us a ⭐️ on GitHub to keep the magic going.
Version: 4.xx.xx
Source Code

<AutoSaveIndicator>

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

Simple usage is as follows:

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

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

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

API Reference

Properties