When I have added a Rerun component to my layout but haven't yet added any inputs it will almost take up the entire screen and not appear where it should.

import gradio as gr
from gradio_rerun import Rerun
with gr.Blocks() as app:
with gr.Row():
viewer = Rerun(streaming=True)
with gr.Row():
button = gr.Button()
app.launch()
If I had this line
button.click(lambda: None, inputs=[], outputs=[viewer])
it behaves as expected.
When I have added a

Reruncomponent to my layout but haven't yet added any inputs it will almost take up the entire screen and not appear where it should.If I had this line
it behaves as expected.