import gradio as gr def snake_game(): # This function will just return the HTML since no user input is needed for this simple demo return f"""
""" with gr.Blocks() as demo: gr.HTML(snake_game()) demo.launch()