Blame view

天文台pc/tianwentai-ui/node_modules/@mui/material/esm/NoSsr/NoSsr.d.ts 782 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  import * as React from 'react';
  import { NoSsrProps } from "./NoSsr.types.js";
  /**
   * 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.
   *
   * Demos:
   *
   * - [No SSR](https://mui.com/material-ui/react-no-ssr/)
   *
   * API:
   *
   * - [NoSsr API](https://mui.com/material-ui/api/no-ssr/)
   */
  declare function NoSsr(props: NoSsrProps): React.JSX.Element;
  declare namespace NoSsr {
    var propTypes: any;
  }
  export default NoSsr;