Skip to content

fix: adjusted useEffect page translate #941

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions src/content/reference/react/useEffect.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ button { margin-left: 10px; }

</Sandpack>

<Solução />
<Solution />

#### Ouvindo um evento global do navegador {/*listening-to-a-global-browser-event*/}

Expand Down Expand Up @@ -265,7 +265,7 @@ body {

</Sandpack>

<Solução />
<Solution />

#### Iniciando uma animação {/*triggering-an-animation*/}

Expand Down Expand Up @@ -364,7 +364,7 @@ html, body { min-height: 300px; }

</Sandpack>

<Solução />
<Solution />

#### Controlando um diálogo modal {/*controlling-a-modal-dialog*/}

Expand Down Expand Up @@ -424,7 +424,7 @@ body {

</Sandpack>

<Solução />
<Solution />

#### Rastreando a visibilidade de um elemento {/*tracking-element-visibility*/}

Expand Down Expand Up @@ -496,7 +496,7 @@ export default function Box() {

</Sandpack>

<Solução />
<Solution />

</Recipes>

Expand Down Expand Up @@ -635,7 +635,7 @@ button { margin-left: 10px; }

</Sandpack>

<Solução />
<Solution />

#### Hook personalizado `useWindowListener` {/*custom-usewindowlistener-hook*/}

Expand Down Expand Up @@ -692,7 +692,7 @@ body {

</Sandpack>

<Solução />
<Solution />

#### Hook personalizado `useIntersectionObserver` {/*custom-useintersectionobserver-hook*/}

Expand Down Expand Up @@ -780,7 +780,7 @@ export function useIntersectionObserver(ref) {

</Sandpack>

<Solução />
<Solution />

</Recipes>

Expand Down Expand Up @@ -1237,7 +1237,7 @@ button { margin-left: 5px; }

</Sandpack>

<Solução />
<Solution />

#### Passando um array de dependências vazio {/*passing-an-empty-dependency-array*/}

Expand Down Expand Up @@ -1313,7 +1313,7 @@ export function createConnection(serverUrl, roomId) {

</Sandpack>

<Solução />
<Solution />


#### Não passando nenhuma array de dependências {/*passing-no-dependency-array-at-all*/}
Expand Down Expand Up @@ -1411,7 +1411,7 @@ button { margin-left: 5px; }

</Sandpack>

<Solução />
<Solution />

</Recipes>

Expand Down
Loading