我用于我的项目Next.js和Typography。
我收到错误TypeError: (0, _typography.scale) is not a function
,遗憾的是,我不明白为什么。
import Link from 'next/link'
import typography, { rhythm, scale } from '../utils/typography';
import colors from '../utils/colors';
const HeaderLink = {
...scale(-1/4),
marginRight: rhythm(1),
color: colors.gunsmoke
}
export default () => (
<header>
<a style={HeaderLink} href="/#top">Home</a>
</header>
)