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

9 lines
208 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="/waybar"></iframe>
`;
};