// @flow import * as React from 'react'; import './styles/BottomContentWrapper.scss'; type Props = {| children: React.Node, |}; function BottomContentWrapper({ children }: Props) { return
{children}
; } export default BottomContentWrapper;