nishantguvvada's picture
Upload 20 files
a8ecc9d verified
raw
history blame contribute delete
No virus
801 Bytes
import { WithStreamlitConnection } from "./streamlit";
import ImageGallery from "./ImageGallery.svelte";
// "WithStreamlitConnection" is a wrapper component. It bootstraps the
// connection between your component and the Streamlit app, and handles
// passing arguments from Python -> Component.
//
// You don't need to edit withStreamlitConnection (but you're welcome to!).
const imageGallery = new WithStreamlitConnection({
target: document.body,
props: {
/**
* Custom Streamlit component
*/
component: ImageGallery,
/**
* Set to false if you want `args` (the named dictionary of arguments passed
* from Python) to be passed as a dictionary to your component.
*
* Default is `true`.
*/
spreadArgs: true,
},
});
export default ImageGallery;