Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 45x 5390x 5390x | import SolveButton from "../SolveButton";
import { DefinedStatusButton } from "./DefinedStatusButton";
import { useSearchParam } from "@/hooks/searchParams";
const FlowsheetControls = () => {
const [scenario, setScenario] = useSearchParam("scenario");
return (
<div className="flex flex-row justify-between items-center h-10 shadow gap-1">
<SolveButton scenarioNumber={+scenario} className="h-full" />
</div>
);
};
export default FlowsheetControls;
|