Skip to content

Commit

Permalink
[#3] suspense 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
03hoho03 committed Apr 6, 2024
1 parent 55c606c commit d8a78e6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/(route)/verification/ibulsin/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import React from 'react'
import React, { Suspense } from 'react'
import Step from './_components/Step'

function page() {
return (
<div>
<Step />
<Suspense fallback={<div>loading...</div>}>
<Step />
</Suspense>
</div>
)
}
Expand Down

0 comments on commit d8a78e6

Please sign in to comment.