import { useEffect, useState } from 'react' import { ButtonCommon, Layout } from 'src/components/common' export default function Test() { const [isLoading, setisLoading] = useState(false) useEffect(() => { setTimeout(() => { setisLoading(true) }, 3000) }, []) return ( <> Back to home Back to home Back to home ) } Test.Layout = Layout