aflyrt commited on
Commit
24dca2a
·
verified ·
1 Parent(s): eadae6a

Update interior design.py

Browse files
Files changed (1) hide show
  1. interior design.py +6 -8
interior design.py CHANGED
@@ -19,13 +19,11 @@ def image_fusion():
19
  return None
20
 
21
  with gr.Block() as demo:
22
- with gr.Row():
23
- with gr.Column():
24
- gr.Image():
25
- gr.Image():
26
- gr.Image():
27
- with gr.Row():
28
- gr.Radio(["Vintage","Contmporary","Cottage","Bohemian","Minimalist"])
29
-
30
 
31
  demo.launch()
 
19
  return None
20
 
21
  with gr.Block() as demo:
22
+ with gr.Column():
23
+ with gr.Row():
24
+ gr.Radio(["Vintage","Contmporary","Cottage","Bohemian","Minimalist"],title = "choose your style")
25
+ gr.Textbox(titel = "instrucation")
26
+
27
+
 
 
28
 
29
  demo.launch()