HackerTrans
TopNewTrendsCommentsPastAskShowJobs

john_miller

no profile record

comments

john_miller
·há 3 anos·discuss
Here are 140:

https://en.m.wikipedia.org/wiki/Bill_Clinton_pardon_controve...
john_miller
·há 6 anos·discuss
// call /MyPage?par1=hello&par2=42

const MyPage = (props: { query: { par1: string; par2: number } }) => ( <div>{`${props.query.par1}-${props.query.par2}`}</div> );