UNPKG

box-ui-elements-mlh

Version:
15 lines (10 loc) 295 B
// @flow import * as React from 'react'; import './styles/BottomContentWrapper.scss'; type Props = {| children: React.Node, |}; function BottomContentWrapper({ children }: Props) { return <div className="BottomContentWrapper">{children}</div>; } export default BottomContentWrapper;