import styled from '@emotion/styled'; import {Panel as BasePanel, PanelFooter, PanelHeader} from 'sentry/components/panels'; import FluidPanel from 'sentry/views/replays/detail/layout/fluidPanel'; export default { title: 'Views/Replays/Fluid Panel', }; const ManualResize = styled('div')` resize: both; overflow: auto; border: 1px solid ${p => p.theme.gray100}; `; export const Basic = () => { return ( Hello World} bottom={

And that's all folks

}>
    {[1, 2, 3, 4, 5, 6, 7, 8].map(i => (

    I would walk {i} miles, and I would walk {i} more.

    ))}
); }; const Panel = styled(BasePanel)` overflow: hidden; margin-bottom: 0; `; export const PanelStyle = () => { return ( Hello World} bottom={And that's all folks} >
    {[1, 2, 3, 4, 5, 6, 7, 8].map(i => (

    I would walk {i} miles, and I would walk {i} more.

    ))}
); }; export const Resizeable = () => { return ( Hello World} bottom={

And that's all folks

}>
    {[1, 2, 3, 4, 5, 6, 7, 8].map(i => (

    I would walk {i} miles, and I would walk {i} more.

    ))}
); };