UNPKG

rap-react

Version:

To make it easy for you to get started with GitLab, here's a list of recommended next steps.

10 lines 200 B
import React from "react"; export const UserContext = React.createContext({ state: { user: {}, token: null }, login: () => {}, logout: () => {} }); export default UserContext;