OpenQDev / OpenQ-Frontend

Frontend for https://openq.dev
https://openq.dev
16 stars 16 forks source link

Hackathon Dashboard improvments #1844

Closed ArcAnya closed 1 year ago

ArcAnya commented 1 year ago
Christopher-Stevers commented 1 year ago

Looks good, going to merge, just note

 const [appState] = useContext(StoreContext);
appState.doThing()

Is more readable than

const appState = useContext(StoreContext);
appState[0].doThing()