Files
supabase/apps/docs/components/StepHikeCompact/StepHikeContext.tsx
Jonathan Summers-Muir c5b84ee176 added some new quickstarts
2022-12-06 09:13:27 +08:00

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,
})