MCPcopy Create free account
hub / github.com/coderoad/coderoad-vscode / StartPageContainer

Function StartPageContainer

web-app/src/containers/Start/index.tsx:144–154  ·  view source on GitHub ↗
({ context, send }: ContainerProps)

Source from the content-addressed store, hash-verified

142}
143
144const StartPageContainer = ({ context, send }: ContainerProps) => {
145 const progress = getProgress(context?.tutorial?.levels, context.position)
146 return (
147 <StartPage
148 onContinue={() => send({ type: 'CONTINUE_TUTORIAL' })}
149 onNew={() => send({ type: 'NEW_TUTORIAL' })}
150 tutorial={context.tutorial}
151 progress={progress}
152 />
153 )
154}
155
156export default StartPageContainer

Callers

nothing calls this directly

Calls 2

getProgressFunction · 0.85
sendFunction · 0.50

Tested by

no test coverage detected