podcast manager
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

finalize tonight's session

+2 -1
+1 -1
src/client/src/App.tsx
··· 7 7 return ( 8 8 <> 9 9 <div className="card"> 10 - <button onClick={() => setCount((count: number) => count + 1)}> 10 + <button type="button" onClick={() => setCount((count: number) => count + 1)}> 11 11 count is {count} 12 12 </button> 13 13 <p>
+1
src/common/gate.ts
··· 1 + // deno-lint-ignore no-explicit-any 1 2 export function makeGate<F extends (...args: any[]) => void>( 2 3 outercb?: () => void, 3 4 ) {