Files
supabase/examples/nextjs-slack-clone/lib/UserContext.js
Paul Copplestone ede962481f chore: I'm settling on the example structure: {framework}-{app-description}
This is more likely how people will search - looking first for the framework which they are familiar with
2020-11-17 19:54:22 +08:00

6 lines
103 B
JavaScript

import { createContext } from 'react'
const UserContext = createContext()
export default UserContext