1.0.1 • Published 6 years ago

client-component v1.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

client-component

For server side rendered React applications. A class decorator to restrict rendering to client side only.

usage

import { clientOnly } from 'client-component';

@clientOnly
class ComponentThatAccessesWindowThatIsNotSafeForServerRendering extends Component {
    render() {
        const currentLocation = window.location;
        return (
            <div>{currentLocation}</div>
        )
    };
}