import { PanelSectionRow } from "@decky/ui"; import { MESSAGES, STYLES } from "../utils/constants"; interface InstructionCardProps { pathExists: boolean | null; } export function InstructionCard({ pathExists }: InstructionCardProps) { if (pathExists !== true) return null; return (
{MESSAGES.instructionTitle}
{MESSAGES.instructionText}
); }