import { definePlugin } from "decky-frontend-lib";
import React from "react";
import { FaGlobe } from "react-icons/fa"; // Example icon
function Content() {
return (
);
}
export default definePlugin(() => {
return {
name: "WebPage Viewer",
title: WebPage Viewer
, // Title shown in Decky
icon: , // Icon for the plugin
content: ,
onDismount() {},
};
});