React: 'EmptyState' 구성요소 생성
4686 단어 reactcodenewbiewebdevbeginners
undefined
또는 null
이면 오류가 발생합니다. 데이터가 없으면 메시지가 있어야 합니다.이러한 기본 사용 사례를 다루는 이
EmptyState
구성 요소를 만들었습니다./** EmptyState.js */
import React from "react";
import _ from "lodash";
import styled from "styled-components";
const StyledContainer = styled.div`
text-align: center;
width: 100%;
font-size: 2rem;
color: lightgrey;
`;
const EmptyState = ({ input, children }) => {
// matches falsy values as well as empty arrays & objects
const isEmpty = _.isEmpty(input);
return isEmpty ? <StyledContainer>Empty</StyledContainer> : children;
};
export default EmptyState;
용법:
/** App.js */
import React from "react";
import EmptyState from "./EmptyState";
const App = ({ data }) => {
return (
<EmptyState input={data}>
{data.map((name) => (
<h3>{name}</h3>
))}
</EmptyState>
);
};
export default App;
추가할 수 있다고 생각되는 사항을 적어 주십시오.
읽어주셔서 감사합니다 💙
자세한 내용은 @codedrops.tech를 팔로우하세요.
마이크로 러닝 ● 웹 개발 ● 자바스크립트 ● MERN 스택
codedrops.tech
프로젝트
File Ops - 파일에 쉽게 태그 지정/별칭 지정 및 파일 간 빠른 전환을 위한 VS Code 확장
Reference
이 문제에 관하여(React: 'EmptyState' 구성요소 생성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ml318097/react-create-an-emptystate-component-n7l텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)