Skip to content

Commit

Permalink
Start Gpio config visual
Browse files Browse the repository at this point in the history
  • Loading branch information
GLDuval committed May 6, 2023
1 parent c3e310e commit b1aa29e
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import React from 'react';
import { SectionTitle } from '../../styles';
import { useDispatch, useSelector } from 'react-redux';
import { selectAllGpioPins } from '@/renderer/store/modules/gpioPins';

export const GpioPinsConfig = () => {
const dispatch = useDispatch();
const gpioPins = useSelector(selectAllGpioPins);
return (
<div>
<SectionTitle>GPIO Config</SectionTitle>
</div>
);
};

0 comments on commit b1aa29e

Please sign in to comment.