-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c0c1a70
commit 78d6f3c
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import React, { createContext, useState } from 'react'; | ||
|
||
export const FszfContext = createContext(); | ||
|
||
export const FszfProvider = ({ children }) => { | ||
const [fszfState, setFszfState] = useState(null); | ||
|
||
return ( | ||
<FszfContext.Provider value={{ fszfState, setFszfState }}> | ||
{children} | ||
</FszfContext.Provider> | ||
); | ||
}; | ||
|
||
// Usage in a component | ||
// import { useContext } from 'react'; | ||
// import { FszfContext } from '../context/FszfContext'; | ||
// const { fszfState, setFszfState } = useContext(FszfContext); | ||
|
||
// Example: setFszfState(newState); |