recipes_app / pages /Saved_Recipes.py
adrianpierce's picture
Update pages/Saved_Recipes.py
4c20be7
raw
history blame
123 Bytes
import streamlit as st
st.write("Saved")
f = open('../data/test_output.json')
json_test = json.load(f)
st.json(json_test)