인프런 커뮤니티 질문&답변

lsw0810222님의 프로필 이미지
lsw0810222

작성한 질문수

[리뉴얼] React로 NodeBird SNS 만들기

프로필 페이지 만들기

Button is not defined

작성

·

234

0

프로필 탭 들어갈 시

 

Button is not defined 이라는 오류가 뜹니다

 

제 코드는

 

import React from "react";
import PropTypes from "prop-types";
import { List } from "antd";
import Item from "antd/lib/list/Item";
import { StopOutlined } from "@ant-design/icons";
import { isStyledComponent, keyframes } from "styled-components";

const FollowList = ({ header, data }) => {
  return (
    <List
      style={{ marginBottom: 20 }}
      grid={{ gutter: 4, xs: 2, md: 3 }}
      size="small"
      header={<div>{header}</div>}
      loadMore={
        <div style={{ textAlign: "center", margin: "10px 0" }}>
          <Button>더 보기</Button>
        </div>
      }
      bordered
      dataSource={data}
      renderItem={(Item) => (
        <List.Item style={{ marginTop: 20 }}>
          <Card actions={[<StopOutlined key="stop" />]}>
            <Card.Meta description={Item.Nickname} />
          </Card>
        </List.Item>
      )}
    />
  );
};

FollowList.propTypes = {
  header: PropTypes.string.isRequired,
  data: PropTypes.array.isRequired,
};

export default FollowList;

입니다 무엇이 문제 일까요?

답변 2

0

lsw0810222님의 프로필 이미지
lsw0810222
질문자

감사합니다

 

0

제로초(조현영)님의 프로필 이미지
제로초(조현영)
지식공유자

Button import 하세요

lsw0810222님의 프로필 이미지
lsw0810222

작성한 질문수

질문하기