Spaces:
Running
Running
File size: 308 Bytes
a43df2a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import mesop.labs as mel
@mel.web_component(path="./copy_to_clipboard_component.js")
def copy_to_clipboard_component(
*,
text: str = "",
key: str | None = None,
):
return mel.insert_web_component(
name="copy-to-clipboard-component",
key=key,
properties={
"text": text,
},
)
|