admin管理员组文章数量:1344227
Please see the code snippets below Is it possible for ponents to be based on other styled ponents.
What I would like to do is const HeaderDropDownLi = styled(DropDownLi, HeaderItem)
DropDownLi and HeaderItem are based on a styled ponent called HorizontalListItem
what I'm currently doing is
const HeaderItem = styled(HorizontalListItem)`
background: #ddd
`;
const HeaderDropDownLi = styled(DropDownLi)`
background: #ddd
`;
I tried to implement a wrapper so const H = () => <DropDownLi><HorizontalListItem></DropDownLi>
but it doesn't work that way and I eventually pass a children prop like
<HeaderDropDownLi
onClick={() => onClick(value)}
className={activeTab===value ? 'active' : ''}>
<Dropbtn>{value}</Dropbtn>
<DropDownContent style={contentStyle}>
{" "}
{children}
</DropDownContent>
</HeaderDropDownLi>
)```
Please see the code snippets below Is it possible for ponents to be based on other styled ponents.
What I would like to do is const HeaderDropDownLi = styled(DropDownLi, HeaderItem)
DropDownLi and HeaderItem are based on a styled ponent called HorizontalListItem
what I'm currently doing is
const HeaderItem = styled(HorizontalListItem)`
background: #ddd
`;
const HeaderDropDownLi = styled(DropDownLi)`
background: #ddd
`;
I tried to implement a wrapper so const H = () => <DropDownLi><HorizontalListItem></DropDownLi>
but it doesn't work that way and I eventually pass a children prop like
<HeaderDropDownLi
onClick={() => onClick(value)}
className={activeTab===value ? 'active' : ''}>
<Dropbtn>{value}</Dropbtn>
<DropDownContent style={contentStyle}>
{" "}
{children}
</DropDownContent>
</HeaderDropDownLi>
)```
Share
Improve this question
asked May 4, 2020 at 20:54
user7480665user7480665
1 Answer
Reset to default 12I think you can solved using "css" and exporting a baseStyle and then using it in your ponents.
import styled, { css } from ‘styled-ponents’;
const baseStyles = css`
background: #ddd
`;
const HeaderItem = styled(HorizontalListItem)`
${baseStyles}
`;
const HeaderDropDownLi = styled(DropDownLi)`
${baseStyles}
`;
本文标签: javascriptMultiple Inheritance (Styled Components)Stack Overflow
版权声明:本文标题:javascript - Multiple Inheritance (Styled Components) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743727855a2528674.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论