UNPKG

solid-panes

Version:

Solid-compatible Panes: applets and views for the mashlib and databrowser

21 lines (17 loc) 572 B
'use strict' // Suspect this is unsed test code /* Profile Editing Appp Pane ** ** Unlike view panes, this is available any place whatever the real subject, ** and allows the user to edit their own profile. ** ** Usage: paneRegistry.register('profile/profilePane') ** or standalone script adding onto existing mashlib. */ // import UI from 'solid-ui' // import solidUi, { SolidUi } from 'solid-ui' // @@ TODO: Write away the need for exception on next line // eslint-disable-next-line camelcase const thisPane = { foo: 'bar' } export default thisPane // ENDS