Skip to content

Commit

Permalink
rename component back to Scrollama
Browse files Browse the repository at this point in the history
  • Loading branch information
maerzhase committed May 17, 2021
1 parent 6f76da8 commit 9788ba4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Scrollama.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const createThreshold = (theta, height) => {
return t;
};

const TinyScrollama = props => {
const Scrollama = props => {
const {
debug,
children,
Expand Down Expand Up @@ -71,11 +71,11 @@ const TinyScrollama = props => {
);
};

TinyScrollama.defaultProps = {
Scrollama.defaultProps = {
onStepProgress: null,
onStepEnter: () => {},
onStepExit: () => {},
threshold: 4,
};

export default TinyScrollama;
export default Scrollama;

0 comments on commit 9788ba4

Please sign in to comment.