@newrelic/gatsby-theme-newrelic
Version:
[](https://opensource.newrelic.com/oss-category/#community-project)
22 lines (18 loc) • 317 B
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import { css } from '@emotion/react';
const Side = ({ children }) => {
return (
<div
css={css`
height: 100%;
`}
>
{children}
</div>
);
};
Side.propTypes = {
children: PropTypes.node,
};
export default Side;