If you try to read context inside content prop of Meta component provided by start, the context will not be available, which is not expected as it's used directly under the provider.
<Ctx.Providervalue={{text: 'you should see this'}}><Htmllang="en"><Head><Metaname="description"content={useContext(Ctx).text}// ctx read here is not available/></Head><Body>...</Body></Html></Ctx.Provider>https://stackblitz.com/edit/solid-start-meta-context-issue?file=src%2Froot.tsx
I'm interested in working on a fix if this is something that's considered a bug.
If you try to read context inside
contentprop ofMetacomponent provided by start, the context will not be available, which is not expected as it's used directly under the provider.https://stackblitz.com/edit/solid-start-meta-context-issue?file=src%2Froot.tsx
I'm interested in working on a fix if this is something that's considered a bug.