博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
React组件继承的由来
阅读量:6841 次
发布时间:2019-06-26

本文共 631 字,大约阅读时间需要 2 分钟。

没有显式继承的时候我们这么写:

import * as React from "react";export interface HelloProps { compiler: string; framework: string; }export const Hello = (props: HelloProps) => 

Hello from {props.compiler} and {props.framework}!

;

我们把它写的更像类一些:

import * as React from "react";export interface HelloProps { compiler: string; framework: string; }// 'HelloProps' describes the shape of props.// State is never set so we use the '{}' type.export class Hello extends React.Component
{ render() { return

Hello from {this.props.compiler} and {this.props.framework}!

; }}

  

转载于:https://www.cnblogs.com/yk123/p/8178699.html

你可能感兴趣的文章
Web性能优化:图片优化
查看>>
使用JS或jQuery模拟鼠标点击a标签事件代码
查看>>
【BZOJ】1225: [HNOI2001] 求正整数
查看>>
RTB业务知识之1-原生广告
查看>>
iOS9和Xcode7
查看>>
Python核心编程笔记----注释
查看>>
Android进程间通信(IPC)机制Binder简介和学习计划
查看>>
android application简要类(一)
查看>>
Android通过HTTP协议实现上传文件数据
查看>>
JAMA:Java矩阵包
查看>>
HAL打开驱动失败
查看>>
Androids含文档erver结束(工具包 Httputils)两
查看>>
Java眼中的XML--文件读取--1 应用DOM方式解析XML
查看>>
CSS3的媒体查询(Media Queries)与移动设备显示尺寸大全
查看>>
git 基本操作
查看>>
Centos6 yum安装openldap+phpldapadmin+TLS+双主配置
查看>>
Python,PyCharm
查看>>
leetcode - Jump Game II
查看>>
Swift - 移除页面视图上的所有元素
查看>>
Swift - 使用Media Player播放本地视频,在线视频
查看>>