版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

11 строки
212 B

  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;