// @flow import * as React from 'react'; import Tooltip from '../../components/tooltip'; import './SandboxBanner.scss'; type Props = { children: React.Element, }; const SandboxBanner = ({ children }: Props) => { return (
{children}
); }; export default SandboxBanner;