- Add 8 new skills (62 total, up from 58) - Official Anthropic skills: docx, pdf, pptx, xlsx, brand-guidelines, internal-comms - Vercel Labs skills: react-best-practices, web-design-guidelines - Implement dual-versioning: -official/-anthropic and -community suffixes - Update README with new skill registry and credits - Regenerate skills_index.json (62 skills validated) - Add comprehensive walkthrough.md BREAKING CHANGE: Document skills (docx/pdf/pptx/xlsx) renamed with version suffixes
47 lines
1.0 KiB
Markdown
47 lines
1.0 KiB
Markdown
---
|
|
title: Hoist Static JSX Elements
|
|
impact: LOW
|
|
impactDescription: avoids re-creation
|
|
tags: rendering, jsx, static, optimization
|
|
---
|
|
|
|
## Hoist Static JSX Elements
|
|
|
|
Extract static JSX outside components to avoid re-creation.
|
|
|
|
**Incorrect (recreates element every render):**
|
|
|
|
```tsx
|
|
function LoadingSkeleton() {
|
|
return <div className="animate-pulse h-20 bg-gray-200" />
|
|
}
|
|
|
|
function Container() {
|
|
return (
|
|
<div>
|
|
{loading && <LoadingSkeleton />}
|
|
</div>
|
|
)
|
|
}
|
|
```
|
|
|
|
**Correct (reuses same element):**
|
|
|
|
```tsx
|
|
const loadingSkeleton = (
|
|
<div className="animate-pulse h-20 bg-gray-200" />
|
|
)
|
|
|
|
function Container() {
|
|
return (
|
|
<div>
|
|
{loading && loadingSkeleton}
|
|
</div>
|
|
)
|
|
}
|
|
```
|
|
|
|
This is especially helpful for large and static SVG nodes, which can be expensive to recreate on every render.
|
|
|
|
**Note:** If your project has [React Compiler](https://react.dev/learn/react-compiler) enabled, the compiler automatically hoists static JSX elements and optimizes component re-renders, making manual hoisting unnecessary.
|