publiclab/plots2

View on GitHub
app/javascript/components/user-context.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from "react";

// creates a universal currentUser state accessible anywhere in the component tree
// see React Context: https://reactjs.org/docs/context.html

export const UserContext = React.createContext(
  null // default value
);