bsky.app/profile/afuz...
I wish I had just kept it all in Next.js instead.
🔥🔥🔥
bsky.app/profile/afuz...
I wish I had just kept it all in Next.js instead.
This is why I don't want to contribute to new features to React anymore because anti-Next.js sentiment is souring it.
This is why I don't want to contribute to new features to React anymore because anti-Next.js sentiment is souring it.
We also added a warning for duplicate view transition names which is also in your demo.
You can try it out with latest Next.js canary.
We also added a warning for duplicate view transition names which is also in your demo.
You can try it out with latest Next.js canary.
developer.mozilla.org/en-US/docs/W...
They can also be updated after it resolves. This is used by RSC when it provides data to React to allow streaming to be free when it's already loaded. Other libraries can use the same optimization.
developer.mozilla.org/en-US/docs/W...
They can also be updated after it resolves. This is used by RSC when it provides data to React to allow streaming to be free when it's already loaded. Other libraries can use the same optimization.
constructor(reason) {
super((resolve, reject) => reject(reason));
this.status = 'rejected';
this.reason = reason;
}
}
constructor(reason) {
super((resolve, reject) => reject(reason));
this.status = 'rejected';
this.reason = reason;
}
}
constructor(value) {
super(resolve => resolve(value));
this.status = 'fulfilled';
this.value = value;
}
}
constructor(value) {
super(resolve => resolve(value));
this.status = 'fulfilled';
this.value = value;
}
}
Westchester is upstate from New York but not in Upstate New York.
Upstate New York includes Connecticut and Vermont.
Westchester is upstate from New York but not in Upstate New York.
Upstate New York includes Connecticut and Vermont.
The "className" prop name is expected to change though so in React it won't actually have the word "class" in it anyway. You often use the enter/exit/update/share ones instead.
The "className" prop name is expected to change though so in React it won't actually have the word "class" in it anyway. You often use the enter/exit/update/share ones instead.
The React API makes more sense from that perspective because otherwise you might expect more low level helpers for filling in the values.
The React API makes more sense from that perspective because otherwise you might expect more low level helpers for filling in the values.
github.com/facebook/rea...
You can also use programmatic approaches for generated styles. Those don't work with SSR triggered transitions (Suspense) though.
github.com/facebook/rea...
github.com/facebook/rea...
You can also use programmatic approaches for generated styles. Those don't work with SSR triggered transitions (Suspense) though.
github.com/facebook/rea...
<ViewTransition className="...">*
You can also specify different ones for enter/exit/update.
* Note this prop name is likely getting renamed.
<ViewTransition className="...">*
You can also specify different ones for enter/exit/update.
* Note this prop name is likely getting renamed.