react-fixed-page-ms

1.0.2 • Public • Published

react-fixed-page

npm Build Status

Declaratively fix the underlying scrolling element of a page for use in overlay elements

Install

npm i --save-dev react-fixed-page-ms

Props

This component has a single prop fixed. You should render this element with fixed to prevent the page from scrolling.

Usage

import FixedPage from 'react-fixed-page-ms';
import React, { Component } from 'react';
 
export default class MyModal extends Component {
  renderModal(){
    // ...
  }
  
  render() {
    const { open } = this.props;
    
    return (
      <div>
        { open ? this.renderModal() : null }
        <FixedPage fixed={open}/>
      </div>
    );
  }
}

Readme

Keywords

none

Package Sidebar

Install

npm i react-fixed-page-ms

Weekly Downloads

1

Version

1.0.2

License

MIT

Last publish

Collaborators

  • moodysalem