面试题答案
一键面试import React from 'react';
const SimpleComponent = ({ textColor }) => {
return (
<p style={{ color: textColor }}>这里是段落文本</p>
);
};
export default SimpleComponent;
import React from 'react';
const SimpleComponent = ({ textColor }) => {
return (
<p style={{ color: textColor }}>这里是段落文本</p>
);
};
export default SimpleComponent;