justin-do-it-react
justin-do-it-react copied to clipboard
264p PageWithLoadDataAndLoading에 isLoading 프로퍼티 누락
// 기존 .addWithJSX('로딩 메세지 예제', () => ( <PageWithLoadDataAndLoading loadData={() => fetch('/').then(() => 'hello')} /> ));
// 수정, isLoading 프로퍼티 추가 .addWithJSX('로딩 메세지 예제', () => ( <PageWithLoadDataAndLoading isLoading loadData={() => fetch('/').then(() => 'hello')} /> ));