recipes_app / pages /Saved_Recipes.py
adrianpierce's picture
Rename pages/test.py to pages/Saved_Recipes.py
b996a46
raw
history blame
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)