import { useEffect, useRef } from 'react'; import { Inputcommon, Layout } from 'src/components/common' import { InputType } from 'src/utils/constanst.utils' export default function Home() { const inputElementRef = useRef(null); useEffect(() => { setTimeout(() =>{ inputElementRef.current?.focus() }, 1000) }, []) const onEnter = (value: string | number) => { } return ( <>
This is home page

Go to pages/index.tsx to get your hand dirty!

Go to src/components to make your awesome component!

Go to src/styles to find global styles!

) } Home.Layout = Layout