UNPKG

221 BTypeScriptView Raw
1import * as React from 'react';
2
3export interface NoSsrProps {
4 children: React.ReactNode;
5 defer?: boolean;
6 fallback?: React.ReactNode;
7}
8
9declare const NoSsr: React.ComponentType<NoSsrProps>;
10
11export default NoSsr;