面试题答案
一键面试import React from 'react';
import styled from'styled-components';
// 创建按钮样式
const StyledButton = styled.button`
background-color: blue;
color: white;
&:active {
background-color: green;
}
`;
const MyPage = () => {
return (
<div>
<StyledButton>点击我</StyledButton>
</div>
);
};
export default MyPage;