mirror of
https://github.com/supabase/supabase.git
synced 2026-05-11 10:49:48 +08:00
9 lines
250 B
TypeScript
9 lines
250 B
TypeScript
import { createContext } from 'react'
|
|
|
|
// Make sure the shape of the default value passed to
|
|
// createContext matches the shape that the consumers expect!
|
|
export const StepHikeContext = createContext({
|
|
activeStep: undefined,
|
|
steps: undefined,
|
|
})
|