版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

simple6.js 212 B

1234567891011
  1. const code = `
  2. type CheckBoxProps = {checked:boolean,width:number};
  3. let cbp:CheckBoxProps = {
  4. checked: true,
  5. width: 100
  6. }
  7. const change = (props:CheckBoxProps)=>{
  8. setProps(props);
  9. }
  10. `;
  11. module.exports = code;