admin管理员组文章数量:1344966
I am setting up a simple Nextjs boilerplate but can't seem to get the styled-ponents to work. In my file Header.tsx:
// Core Module Imports
import Link from "next/link";
import * as React from "react";
// Styled-Component Imports
import styled from "../theme/theme";
class Header extends React.Component {
render() {
return (
<div>
<Link href="/about">
<a>About Us</a>
</Link>
</div>
);
}
}
const StyledHeader = styled(Header)`
width: 100vw;
height: 10vh;
background: #2a2c39;
color: #ff0000;
link-style: none;
`;
export default StyledHeader;
As you can see, I set up a simple Header ponent and then below I used styled() to define my css. In my file Index.tsx:
// Core Module Imports
import * as React from "react";
import StyledHeader from "../ponents/Header";
class Index extends React.Component {
render() {
return (
<div>
<StyledHeader />
<p>Test Change</p>
<div>Example Div</div>
</div>
);
}
}
export default Index;
Obviously I am doing something wrong because it is not working and all I get it an unstyled link. Can anyone point me in the right direction?
I am setting up a simple Nextjs boilerplate but can't seem to get the styled-ponents to work. In my file Header.tsx:
// Core Module Imports
import Link from "next/link";
import * as React from "react";
// Styled-Component Imports
import styled from "../theme/theme";
class Header extends React.Component {
render() {
return (
<div>
<Link href="/about">
<a>About Us</a>
</Link>
</div>
);
}
}
const StyledHeader = styled(Header)`
width: 100vw;
height: 10vh;
background: #2a2c39;
color: #ff0000;
link-style: none;
`;
export default StyledHeader;
As you can see, I set up a simple Header ponent and then below I used styled() to define my css. In my file Index.tsx:
// Core Module Imports
import * as React from "react";
import StyledHeader from "../ponents/Header";
class Index extends React.Component {
render() {
return (
<div>
<StyledHeader />
<p>Test Change</p>
<div>Example Div</div>
</div>
);
}
}
export default Index;
Obviously I am doing something wrong because it is not working and all I get it an unstyled link. Can anyone point me in the right direction?
Share Improve this question asked Mar 14, 2018 at 23:01 L. NormanL. Norman 4831 gold badge8 silver badges21 bronze badges4 Answers
Reset to default 3For anyone that sees this and has a similar issue, check out this: https://github./zeit/next.js/issues/1942#issuement-313925454
Fixed my issue.
Hey guys. At version 3.0.1-beta.13+, you could set passHref to Link (as a boolean property) to expose its href to styled-ponents (or any other library that wraps its tag).
const StyledLink = styled.a`
color: red;
background: blue;
`
export default ({ href, name }) => (
<Link prefetch href={href} passHref>
<StyledLink>{name}</StyledLink>
</Link>
)
There are solutions in the GitHub issue for people using next-routes
.
You need to pass this.props.className
into the root element of Header
so the styled wrapper can pass a generated class name in:
class Header extends React.Component {
render() {
return (
<div className={this.props.className}>
<Link href="/about">
<a>About Us</a>
</Link>
</div>
);
}
}
TL;DR:
Create a _document.js
file in your /pages
folder and paste this in. It should work immediately
本文标签: javascriptStyledcomponents with components in NextjsStack Overflow
版权声明:本文标题:javascript - Styled-components with components in Nextjs - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743800115a2541154.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论