import {useEffect} from 'react';
import styled from '@emotion/styled';
import Link from 'sentry/components/links/link';
import Panel from 'sentry/components/panels/panel';
import {IconSentry} from 'sentry/icons';
import space from 'sentry/styles/space';
const BODY_CLASSES = ['narrow'];
function Layout({children}) {
useEffect(() => {
document.body.classList.add(...BODY_CLASSES);
return () => document.body.classList.remove(...BODY_CLASSES);
}, []);
return (