0.0.1 • Published 4 years ago

react-sticky-stack-fixed v0.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

Build Status

React Sticky Stack - traverseParentPath error FIX

This a forked repo from YPlan with a fix proposed by lucas-issa in this PR and implemented in this npm.

A Sticky Stack component for React.js

Installation

$ npm install react-sticky-stack-fixed --save

Demo

https://react-sticky-stack.herokuapp.com/

Usage

import React from 'react';
import ReactDOM from 'react-dom';
import {StickyStackContext, StickyStackItem} from 'react-sticky-stack-fixed';

const App = React.createClass({
  render() {
    return (
      <StickyStackContext>
        <p>
          Lorem Ipsum
        </p>
        <StickyStackItem position={0}>
          <h1>
            Live
          </h1>
        </StickyStackItem>
        <p>
          Lorem Ipsum
        </p>
        <StickyStackItem position={1}>
          <h2>
            Your
          </h2>
        </StickyStackItem>
        <p>
          Lorem Ipsum
        </p>
        <StickyStackItem position={2}>
          <h3>
            City
          </h3>
        </StickyStackItem>
        <p>
          Lorem Ipsum
        </p>
      </StickyStackContext>
    );
  },
});

ReactDOM.render(<App />, document.getElementById('app'));

Test

$ npm test