React component to wrap non SSR components.
npm install @mpth/react-no-ssrWhen working with Server Side Rendering(SSR) enabled apps, you have to deal with client only components. This wrapper makes it simple to work with those components.
npmjs.com/package/@mpth/react-no-ssr
```
yarn add @mpth/react-no-ssr
Foo is our client only component:
`js
import React from 'react';
import NoSSR from '@mpth/react-no-ssr';
import Foo from '../modules/foo';
import Bar from '../modules/bar';
const Page = () => (
<>
Then,
component is only rendered on the client just after it's mounted.$3
Usually, we need to add some loading text or similar until
component starts to render. Here's how to do it.`js
const Loading = () => (Loading...);
const Page = () => (
<>
....
}>
>
);
`Now
component will be rendered until 