Corran commited on
Commit
d697159
1 Parent(s): 33d6a09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -8,6 +8,7 @@ sys.path.append(HERE)
8
  from utils import GParse_Paper, Get_Bibliography
9
  from bs4 import BeautifulSoup
10
  import solara
 
11
 
12
  app_style = (HERE / "style.css").read_text()
13
 
@@ -166,7 +167,7 @@ def Get_Article_HTML(pdf):
166
  return html
167
 
168
 
169
- html = solara.reactive("")
170
 
171
  @solara.component
172
  def Page():
 
8
  from utils import GParse_Paper, Get_Bibliography
9
  from bs4 import BeautifulSoup
10
  import solara
11
+ from solara.components.file_drop import FileInfo
12
 
13
  app_style = (HERE / "style.css").read_text()
14
 
 
167
  return html
168
 
169
 
170
+ html = solara.reactive("<h1> Article PDF to HTML converter </h1>")
171
 
172
  @solara.component
173
  def Page():