Skip to content

Commit 51caf34

Browse files
authored
Create app.py
1 parent a4ab0a1 commit 51caf34

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

issues/gh-14837/app.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import pandas as pd
2+
import streamlit as st
3+
4+
df = pd.DataFrame(
5+
{"c": [10, 10]},
6+
index=[
7+
"Lorem ipsum dolor",
8+
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.",
9+
],
10+
)
11+
12+
c1, _ = st.columns(2)
13+
c1.dataframe(df, width="content")

0 commit comments

Comments
 (0)