styled-component `You may see this warning because you've called styled inside another component.`

support·2022년 3월 24일
0

Errors

목록 보기
4/6

컴포넌트 안에서 스타일을 적었기 때문에 발생하는 에러

수정 전

import styled from 'styled-components'

function PostList() {
  const PostListMenu = styled.div`
    background-color: #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #C9C9C9;
    `
  return (
      <PostListMenu> 배달 모집 목록 </PostListMenu>
  )
}

수정 후

import styled from 'styled-components'

const PostListMenu = styled.div`
background-color: #EEEEEE;
display: flex;
align-items: center;
justify-content: center;
height: 70px;
font-size: 18px;
font-weight: bold;
border: 1px solid #C9C9C9;
`


function PostList() {
  return (
      <PostListMenu> 배달 모집 목록 </PostListMenu>
  )
}

0개의 댓글