top | item 24697864

(no title)

john_miller | 5 years ago

// call /MyPage?par1=hello&par2=42

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

discuss

order

No comments yet.