1import panel as pn 2 3from .sinewave import SineWave 4 5 6def createApp2(): 7 sw = SineWave() 8 return pn.Row(sw.param, sw.plot).servable() 9 10