Remove folders and files

This commit is contained in:
Ariful Alam
2022-03-18 23:30:10 +06:00
parent 6a9496aa51
commit 7b7502a118
38 changed files with 0 additions and 41846 deletions

View File

@@ -1,15 +0,0 @@
import { createContext, useState } from "react";
const initialValue = true;
export const LoadingContext = createContext();
export const LoadingProvider = (props) => {
const [loading, setLoading] = useState(initialValue);
return (
<LoadingContext.Provider value={[loading, setLoading]}>
{props.children}
</LoadingContext.Provider>
);
}