pramod_Task-#357 : Added Admin Update and Delete Functionality in Manage Buckets Modal #155

Merged
pramod.mahajan merged 32 commits from pramod_Task-#357 into Feature_Directory 2025-05-28 07:03:52 +00:00
Showing only changes of commit cea094cd89 - Show all commits

View File

@ -0,0 +1,15 @@
import React, { createContext, useContext, useState } from "react";
const FabContext = createContext();
export const FabProvider = ({ children }) => {
const [actions, setActions] = useState([]);
return (
<FabContext.Provider value={{ actions, setActions }}>
{children}
</FabContext.Provider>
);
};
export const useFab = () => useContext(FabContext);