DefinitelyTyped/types/react-no-ssr/react-no-ssr-tests.tsx
Rafał Filipek b6f7118f87 react-no-ssr typings (#27738)
* react-no-ssr typings

* fix tests
2018-07-31 15:45:03 -07:00

18 lines
375 B
TypeScript

import * as React from 'react';
import NoSSR from 'react-no-ssr';
export class NoSSRTest extends React.Component {
render() {
return (
<div>
<NoSSR>
<div />
</NoSSR>
<NoSSR onSSR={<span />}>
<div />
</NoSSR>
</div>
);
}
}