/lit_bashwork

Primary LanguagePythonApache License 2.0Apache-2.0

lit_bashwork component

This ⚡ Lightning component ⚡ was generated automatically with:

lightning init component lit_bashwork

To run lit_bashwork

First, install lit_bashwork (warning: this app has not been officially approved on the lightning gallery):

lightning install component https://github.com/robert-s-lee/lit_bashwork

Once the app is installed, use it in an app:

from lit_bashwork import LitBasWork
import lightning_app as la


class LitApp(lapp.LightningFlow):
    def __init__(self) -> None:
        super().__init__()
        self.lit_bashwork = LitBasWork()

    def run(self):
        print(
            "this is a simple Lightning app to verify your component is working as expected"
        )
        self.lit_bashwork.run()


app = lapp.LightningApp(LitApp())