如何将primary转换为button.tsx组件,然后从buttonstyles.ts中将其转换为样式化条件。需要从按钮组件中制作两个不同颜色的按钮。
axr492tv1#
在Button元件中,您应该将primary传递至TextButton。
Button
primary
TextButton
const Button : FC<ChildrenType> = ({primary, children}) => { return ( <MainButton> <TextButton primary={primary}>{children}</TextButton> </MainButton> ); }
1条答案
按热度按时间axr492tv1#
在
Button
元件中,您应该将primary
传递至TextButton
。