department-of-veterans-affairs/vets-website

View on GitHub
src/platform/utilities/scroll/index.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import PropTypes from 'prop-types';

export const Element = ({ name, children = null }) => (
  <div name={name}>{children}</div>
);

Element.propTypes = {
  children: PropTypes.any,
  name: PropTypes.string,
};