Skip to content

Latest commit

 

History

History
 
 

Day-27

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

30DaysOfStreamlit | Day-27

Build a draggable and resizable dashboard with Streamlit Elements

Streamlit Elements is a third-party component made by okld that gives you the tools to compose beautiful applications and dashboards with Material UI widgets, Monaco editor (Visual Studio Code), Nivo charts, and more.

pip install streamlit-elements==0.1.*

Usage

You can refer to Streamlit Elements README for an in-depth usage guide. Example

from streamlit_elements import elements, mui, html
with elements("new_element"):
    mui.Typography("Hello world")

References

Result

day27