Skip to content

Commit

Permalink
Update context/FszfContext.js.
Browse files Browse the repository at this point in the history
  • Loading branch information
gitauto-ai[bot] authored Oct 25, 2024
1 parent c0c1a70 commit 78d6f3c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions context/FszfContext.js
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);

0 comments on commit 78d6f3c

Please sign in to comment.