mirror of
https://github.com/SupertigerDev/waybar-online.git
synced 2026-03-24 08:06:37 +00:00
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
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>
|
|
`;
|
|
};
|