import React, { createContext, useContext } from 'react';
export const filename = createContext({});
export function usefilename() {
return useContext(filename);
}
export const filenameProvider = ({ children }) => {
return (
<filename.Provider
value={{
val: 1
}}
>
{children}
</filename.Provider>
);
};
export const usefilename = () => {
const { val } = useContext(filename);
return { val };
};
React create context with hook
0
3
Jose Romero
The code creates a context and a function that takes a context as an argument. The context defines the global scope for the function. The function uses the context to access the value of the val variable.
Library: react
Shortcut: react.hook.context.hook.create
0 Comments
Add Comment
Log in to add a comment