LukeSheard/Monzo-Dashboard

View on GitHub
src/common/components/Area.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React, {
  PropTypes,
} from 'react';

const Area = ({
  children,
}) => (
  <div
    style={{
      position: 'relative',
      height: '100%',
    }}
  >
    {children}
  </div>
);

Area.propTypes = {
  children: PropTypes.any,
};

export default Area;