* feat: rewrite public UI component rendering using tunnels * factor out into components * comments * fix variable naming * fix not hiding welcomeScreen * factor out AppFooter and memoize components * remove `UIOptions.welcomeScreen` and render only from host app * factor out tunnels into own file * update changelog. Keep `UIOptions.welcomeScreen` as deprecated * update changelog * lint --------- Co-authored-by: Aakansha Doshi <aakansha1216@gmail.com>
9 lines
331 B
TypeScript
9 lines
331 B
TypeScript
import tunnel from "tunnel-rat";
|
|
|
|
export const mainMenuTunnel = tunnel();
|
|
export const welcomeScreenMenuHintTunnel = tunnel();
|
|
export const welcomeScreenToolbarHintTunnel = tunnel();
|
|
export const welcomeScreenHelpHintTunnel = tunnel();
|
|
export const welcomeScreenCenterTunnel = tunnel();
|
|
export const footerCenterTunnel = tunnel();
|