redbadger/website-honestly

View on GitHub
site/components/scroll-tracker/index.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
// @flow

import * as React from 'react';

type Props = {
  children: React.Node,
};
// TODO: I no longer serve a purpose, remove me.

export default function ScrollTracker({ children }: Props) {
  return <React.Fragment>{children}</React.Fragment>;
}