justin-do-it-react icon indicating copy to clipboard operation
justin-do-it-react copied to clipboard

264p PageWithLoadDataAndLoading에 isLoading 프로퍼티 누락

Open choyeah opened this issue 4 years ago • 0 comments

// 기존 .addWithJSX('로딩 메세지 예제', () => ( <PageWithLoadDataAndLoading loadData={() => fetch('/').then(() => 'hello')} /> ));

// 수정, isLoading 프로퍼티 추가 .addWithJSX('로딩 메세지 예제', () => ( <PageWithLoadDataAndLoading isLoading loadData={() => fetch('/').then(() => 'hello')} /> ));

choyeah avatar May 29 '20 07:05 choyeah