DefinitelyTyped/types/react-no-ssr/index.d.ts
Ferdy Budhidharma 1d9679b2dc [react] add library managed attributes and upgrade TS requirement to 2.8 (#27901)
* feat(react): add library managed attributes and upgrade to 2.8

* fix broken tests

* fix lint errors
2018-08-06 18:51:26 +01:00

12 lines
379 B
TypeScript

// Type definitions for react-no-ssr 1.1
// Project: https://github.com/kadirahq/react-no-ssr
// Definitions by: Rafał Filipek <https://github.com/rafalfilipek>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
import * as React from 'react';
export default class NoSSR extends React.Component<{
onSSR?: React.ReactChild;
}> {}