What is context?

Technology CommunityCategory: ReactWhat is context?
VietMX Staff asked 3 years ago

Context provides a way to pass data through the component tree without having to pass props down manually at every level. For example, authenticated user, locale preference, UI theme need to be accessed in the application by many components.

const {Provider, Consumer} = React.createContext(defaultValue);