Max

Results 387 comments of Max

Is something causing any trouble that we could fix to move forward with this ?

Thing is: Next.js decided to have `"use server"` as the default directive if none. So every client components, components that use context or state etc, need to specify the client...

I still dont see any search field anywhere 😅

@nmn your screenshot is from stylex doc `react-strict-dom` doesn't have any search box anywhere.

Would be nice to have a search field on the doc. Do you want to setup and algolia like stylex instead of this PR ? Do you want some help...

I am offering again my hands if you need help. I am visiting docs from times to times and would love a search box ! And maybe even better, something...

I am facing the same issue. It's even blocking me with `.web.js` (RNW + webpack resolve option) (eg https://github.com/facebookincubator/create-react-app/blob/a1c5b8f7054ac0ac708a498c2a6308f3ed1cb8f0/packages/react-scripts/config/webpack.config.dev.js#L93) I saw that BS accept a option `"suffix": ".whatever.js"` to generate...

Just an idea (I have in my case used a workaround using some webpack config since I have an issue with .web.js): using Platform.select might help to require the right...

> How do you achieve that producing Button.ios.js and Button.android.js at the same time? Currently we have the following behavior - `Something.re`: module: `Something`, compiled `Something.js` - `Something.else.re`: module: `Something`,...

Reminder for those looking for this, best quick workaround - Make your `ThingPlatform.js` for each platform - Make a `Thing.{platform}.js` which basically import/export `ThingPlatform.bs.js` for each platform - Make a...