| 1 | import { Box, Checkbox, FormControlLabel, FormGroup } from "@mui/material"; |
| 2 | |
| 3 | interface EngineCheckboxesProps { |
| 4 | engines: string[]; |
| 5 | selected: string[]; |
| 6 | onChange: (engines: string[]) => void; |
| 7 | } |
| 8 | |
| 9 | export function EngineCheckboxes({ |
| 10 | engines, |
nothing calls this directly
no outgoing calls
no test coverage detected