File size: 264 Bytes
e974cb2
7660838
e974cb2
 
 
7660838
e974cb2
 
 
 
 
7660838
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import streamlit as st
from ui import build_ui

# Defining page settings
st.set_page_config(
    page_title="Investment Portfolio Management",
    page_icon=":heavy_dollar_sign:",
    layout='wide',
    initial_sidebar_state='expanded'
)

# Build the UI
build_ui()