import { getCurrentWindow } from "@tauri-apps/api/window"; import { motion } from "framer-motion"; import { memo } from "react"; const appWindow = getCurrentWindow(); interface AppHeaderProps { playClickSound: () => void; uiFade: any; } export const AppHeader = memo(function AppHeader({ playClickSound, uiFade }: AppHeaderProps) { return (
Icon Emerald Legacy Launcher
); });