Spaces:
Sleeping
Sleeping
Update inventory_dashboard.py
Browse files- inventory_dashboard.py +6 -0
inventory_dashboard.py
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
{
|
| 2 |
"cells": [
|
| 3 |
{
|
|
@@ -327,3 +331,5 @@
|
|
| 327 |
"nbformat": 4,
|
| 328 |
"nbformat_minor": 2
|
| 329 |
}
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
st.title("Inventory Dashboard")
|
| 4 |
+
st.write("Welcome to your inventory tracking system!")
|
| 5 |
{
|
| 6 |
"cells": [
|
| 7 |
{
|
|
|
|
| 331 |
"nbformat": 4,
|
| 332 |
"nbformat_minor": 2
|
| 333 |
}
|
| 334 |
+
if __name__ == "__main__":
|
| 335 |
+
st.run()
|