box-ui-elements-mlh
Version:
15 lines (10 loc) • 295 B
JavaScript
// @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;