mirror of
https://github.com/SupertigerDev/waybar-online.git
synced 2026-03-24 08:06:37 +00:00
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
|
|
import "./root.css";
|
||
|
|
const appElement = document.getElementById("app")!;
|
||
|
|
|
||
|
|
export const createRootPage = async () => {
|
||
|
|
appElement.innerHTML = `
|
||
|
|
<iframe id="waybar-iframe" src="/waybar"></iframe>
|
||
|
|
`;
|
||
|
|
};
|