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