import { useThreekitInitStatus } from '@threekit-tools/treble/dist'; import React from 'react'; import ArBox from '../../assets/ArBox'; import BackArrow from '../../assets/BackArrow'; import s from './AnimatedHint.module.scss'; export const AnimatedHint = () => { const hasLoaded = useThreekitInitStatus(); return ( <> {hasLoaded && (
Press the arrows to rotate the image
)} ); };