"use client"; import { Actions } from "flexlayout-react"; import { BookOpenIcon } from "lucide-react"; import { Button } from "@/components/ui/button"; import { useProblemFlexLayoutStore } from "@/stores/flexlayout"; export const ViewSolutionButton = () => { const { model } = useProblemFlexLayoutStore(); const handleClick = () => { if (!model) return; model.doAction(Actions.selectTab("solution")); }; return ( ); };