27 lines
607 B
TypeScript
27 lines
607 B
TypeScript
import React, {useEffect} from 'react'
|
|
import useRefreshSnapshot from './useRefreshSnapshot'
|
|
|
|
/**
|
|
* Putting this element in a suspense tree makes sure the snapshot editor
|
|
* gets refreshed once the tree renders.
|
|
*
|
|
* Alternatively you can use
|
|
* @link useRefreshSnapshot()
|
|
*
|
|
* @example
|
|
* ```jsx
|
|
* <Suspense fallback={null}>
|
|
* <RefreshSnapshot />
|
|
* <Model url={sceneGLB} />
|
|
* </Suspense>
|
|
* ```
|
|
*/
|
|
const RefreshSnapshot: React.FC<{}> = (props) => {
|
|
const refreshSnapshot = useRefreshSnapshot()
|
|
useEffect(() => {
|
|
refreshSnapshot()
|
|
}, [])
|
|
return <></>
|
|
}
|
|
|
|
export default RefreshSnapshot
|