Skip to content

Commit

Permalink
Add TODO for Extension to respond to FullPinout setInputValid (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidSouther authored Oct 30, 2023
1 parent 44c3e93 commit 1aa4be4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion extension/views/hdl/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,13 @@ function App() {
<p>Invalid Chip</p>
) : (
<>
<FullPinout sim={state.sim} toggle={actions.toggle} />
<FullPinout
sim={state.sim}
toggle={actions.toggle}
setInputValid={() => {
console.log("TODO: Handle Input Valid");
}}
/>
<h4>Visualizations</h4>
{visualizations.length > 0 ? (
visualizations.map(([p, v]) => <div key={p}>{v}</div>)
Expand Down

0 comments on commit 1aa4be4

Please sign in to comment.