recipes_app / pages /saved.py
adrianpierce's picture
Rename pages/Saved_Recipes.py to pages/saved.py
fddadf1
raw
history blame
No virus
133 Bytes
import streamlit as st
import json
st.write("Saved")
f = open('/data/test_output.json')
json_test = json.load(f)
st.json(json_test)