Update App.py
Browse files
App.py
CHANGED
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import React, { useState } from 'react';
|
2 |
|
3 |
// Simple flame component
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
x = st.slider('Select a value')
|
4 |
+
st.write(x, 'squared is', x * x)
|
5 |
+
|
6 |
import React, { useState } from 'react';
|
7 |
|
8 |
// Simple flame component
|