React项目开发代码格式化规范
import React from 'react';
import PropTypes from 'prop-types';
// 使用函数组件和hooks
function MyComponent({ title }) {
// 使用useState钩子来管理组件状态
const [count, setCount] = React.useState(0);
// 自定义的事件处理函数
function handleIncrement() {
setCount(count + 1);
}
return (
<div>
<h1>{title}</h1>
<p>Count: {count}</p>
<button onClick={handleIncrement}>Increment</button>
</div>
);
}
// 组件属性验证
MyComponent.propTypes = {
title: PropTypes.string.isRequired
};
export default MyComponent;
这个代码实例展示了如何在React项目中使用函数组件、hooks和PropTypes来创建一个具有状态管理和属性验证的简单组件。这是现代React开发的推荐实践。
评论已关闭