This commit is contained in:
ISA
2025-06-27 07:12:01 +02:00
parent c558b9b826
commit 7da872ae07
8 changed files with 23 additions and 15 deletions

View File

@@ -18,7 +18,10 @@ type Props = {
inputRange: { start: number; end: number };
};
export default function DigitalInputs({ openInputModal, inputRange }: Props) {
export default function DigitalInputsWidget({
openInputModal,
inputRange,
}: Props) {
const digitalInputs = useSelector(
(state: RootState) => state.digitalInputsSlice.inputs
);