Pular para o conteúdo

NoSsr API

Documentação da API para o componente React NoSsr . Aprenda sobre as propriedades disponíveis e a API CSS.

Importação

import NoSsr from '@mui/core/NoSsr';
// ou
import { NoSsr } from '@mui/core';
Você pode aprender sobre a diferença lendo este guia sobre como minimizar o tamanho do pacote.

NoSsr purposely removes components from the subject of Server Side Rendering (SSR).

This component can be useful in a variety of situations:

  • Escape hatch for broken dependencies not supporting SSR.
  • Improve the time-to-first paint on the client by only rendering above the fold.
  • Reduce the rendering time on the server.
  • Under too heavy server load, you can turn on service degradation.

Propriedades

NomeTipoPadrãoDescrição
childrennode
You can wrap a node.
deferboolfalse
If true, the component will not only prevent server-side rendering. It will also defer the rendering of the children into a different screen frame.
fallbacknodenull
The fallback content to display.

O componente não pode manipular ref.

Demonstrações