Files
waybar-online/src/routes/root/root.ts

11 lines
247 B
TypeScript
Raw Normal View History

2025-08-01 18:04:20 +01:00
import "./root.css";
const appElement = document.getElementById("app")!;
export const createRootPage = async () => {
appElement.innerHTML = `
<iframe id="waybar-iframe" src="${
import.meta.env.BASE_URL
}/waybar"></iframe>
2025-08-01 18:04:20 +01:00
`;
};